I have this list of x, y-pairs l={{x1, y1}, {x2, y2}, ...}.
Now I need to flip the sign of the y values only before plotting.
What is the easiest way to do this modification?
- 217
- 1
- 7
6 Answers
Little benchmark to compare suggested methods:
l = RandomReal[{0, 1}, {1000000, 2}];
b1[l_List] := {1, -1} # & /@ l;
b2[l_List] := Transpose@{#[[1]], -#[[2]]} &@Transpose[l];
b3[l_List] := Transpose[{1, -1} Transpose[l]];
m1[l_List] := MapAt[-# &, l, {All, 2}];
m2[l_List] := {#1, -#2} & @@@ l;
ch1[l_List] := l /. {a_, b_} :> {a, -b};
g1[l_List] := l ConstantArray[{1, -1}, Length@l];
w1[l_List] := l.{{1, 0}, {0, -1}};
fb1[l_List] := Thread[{l[[;; , 1]], -l[[;; , 2]]}];
#2 -> #1 & @@@ SortBy[#, #[[1]] &] &@({#1, #2} & @@@Transpose@{First@AbsoluteTiming[#[l]] & /@ #, #}&@{b1, b2, b3,m1, m2, ch1, g1,w1,fb1})
{w1 -> 0.007054, b3 -> 0.016369, b2 -> 0.020753, b1 -> 0.155566, fb1 -> 0.25016, g1 -> 0.323931, m2 -> 1.05527, m1 -> 1.13127, ch1 -> 1.32451}
- 6,428
- 18
- 32
-
b3 is the last thing I would have used without much thinking, neat to see how much faster it is though. – N.J.Evans May 13 '16 at 16:28
-
@FrankBreitling Usually you create a new list in Mathematica and not modify existing one. Your method
l=Thread[{l[[1]], -l[[2]]}]doesn't yield desired result. – BlacKow May 13 '16 at 17:02 -
-
-
... not only it is the fastest but also the shortest if you write it as
({1,-1} l):) – kglr May 13 '16 at 18:07 -
-
@BlacKow, it shows as a box in Chrome on Windows too. But if you copy/paste into mma it renders properly:
– kglr
May 13 '16 at 18:13
-
Thank you, that's very interesting! How does this compare to
l=Thread[{l[[;;,1]], -l[[;;,2]]}]I had thought about? Are these methods creating new lists or just modifying the existing list which is interesting with respect to memory usage? – Frank Breitling May 15 '16 at 14:54 -
1
-
Dot works well here.
pts = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
pts.{{1, 0}, {0, -1}}
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
In version 10.1.0 under Windows x64 this is twice as fast as BlacKow's fastest method:
l = RandomReal[{0, 1}, {1000000, 2}];
Transpose[{1, -1} Transpose[l]] // RepeatedTiming // First
l.{{1, 0}, {0, -1}} // RepeatedTiming // First
0.01330.0072
- 271,378
- 34
- 587
- 1,371
-
I was so sure that you can't do this, that it will cause some dimensions mismatch, so I haven't even tried this... I'll add it to my benchmark later. Thanks! – BlacKow May 14 '16 at 03:12
-
1I like this. Nice to see you using dot products! :) – J. M.'s missing motivation May 14 '16 at 05:13
-
@J.M. There is a pretty good chance you taught me this but my memory is too poor to remember. – Mr.Wizard May 14 '16 at 06:29
-
@J.M. Do you feel that this is a duplicate of (38138)? I do, but not strongly, and I did not wish to act alone. – Mr.Wizard May 15 '16 at 03:38
-
Somehow I recall another thread with the exact same problem of reflecting, but the link escapes me at the moment. BTW, I'm sure you know this, but for general scaling and reflection, one could use
DiagonalMatrix[], or evenScalingTransform[]. – J. M.'s missing motivation May 15 '16 at 04:10
list = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
Using Threaded (new in 13.1)
list * Threaded[{1, -1}]
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
- 67,911
- 5
- 60
- 168
Using Cases and PauliMatrix[3]:
pts = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
Cases[pts, v_ :> v . PauliMatrix[3]]
({{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}})
- 23,117
- 3
- 21
- 44
I am glad to see that people are using Threaded
I am surprised nobody mentioned the use of Inner
Grabbing the list from @eldo
list = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
This
Inner[Times, list, {1, -1}, List]
returns
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
We can, also, use Splice
Cases[list, x_ :> {First@x, Splice@Rest@-x}]
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
And ApplyTo
list = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
list //= ReplaceAt[x_ :> -x, {All, 2}];
list
giving
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
- 15,157
- 2
- 26
- 63
list = {{x1, y1}, {x2, y2}, {x3, y3}, {x4, y4}};
SubsetMap[-# &, list, {All, 2}]
SequenceCases[list, {{a_, b_}} :> {a, -b}]
list . ReflectionMatrix[{0, 1}]
Result:
{{x1, -y1}, {x2, -y2}, {x3, -y3}, {x4, -y4}}
- 52,495
- 4
- 30
- 85
{1, -1} # & /@ lorTranspose@{#[[1]], -#[[2]]} &@Transpose[l]– BlacKow May 13 '16 at 15:39- As you receive help, try to give it too, by answering questions in your area of expertise.
- Take the tour and check the faqs!
- When you see good questions and answers, vote them up by clicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. Remember to accept the answer, if any, that solves your problem, by clicking the checkmark sign!
– May 13 '16 at 15:50Transpose[{1, -1} # &@Transpose[l]]– BlacKow May 13 '16 at 15:50MapAt[-# &, l, {All, 2}]. Or{#1, -#2} & @@@ l. – march May 13 '16 at 15:51l /. {a_, b_} :> {a, -b}– chuy May 13 '16 at 16:44l ConstantArray[{1, -1}, Length@l]– george2079 May 13 '16 at 17:50