I have the following list:
m = {{x == 0, y == 0.29264681456942615},
{x == 30, y == 0.2419119568894183},
{x == 50, y == 0.1485164898707659},
{x == 70, y == 0.05437093382683481},
{x == 90 , y == 1.}}
I would like to convert it to the form {{0,0.29264681456942615},{30, 0.2419119568894183}, ... } (extracting only the numbers form the list). How can I do this?


Equal[_, b_] -> b– chris Nov 6 '12 at 14:42Map[Last, m, {2}]. – 0x4A4D♦ Nov 6 '12 at 14:56m[[All,All,2]]– Yves Klett Nov 6 '12 at 15:05