Re: How to reverse sign on the y's in a list of (x, y)'s?
- To: mathgroup at smc.vnet.net
- Subject: [mg61247] Re: How to reverse sign on the y's in a list of (x, y)'s?
- From: "Ray Koopman" <koopman at sfu.ca>
- Date: Fri, 14 Oct 2005 05:53:32 -0400 (EDT)
- References: <dikt77$4tm$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
sherifffruitfly at gmail.com wrote: > Hi all, > > This is really dumb, but I just don't know how to do it... > > Import from excel gives me a list of ordered pairs, and I want the 2nd > element of each pair to be of opposite sign. Sticking the negative sign > in front of the entire Import statement reverses both the 1st and the > 2nd elements (duh). How do I get just the second item to reverse sign? > > thanks! Map[#*{1,-1}&, listoforderedpairs]