| Author |
Comment/Response |
Blake Treves
|
10/27/07 6:30pm
Right now I am doing this:
xlist = {.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5,
8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5};
ylist = {100, 94, 91, 87, 84, 81, 78, 74, 72, 71, 69, 67, 66, 65, 63,
62, 61, 59, 58, 57, 56, 55, 54 };
ListPlot[Transpose[{xlist, ylist}]]
and
xlist = {.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 6.5, 7, 7.5,
8, 8.5, 9, 9.5, 10, 10.5, 11, 11.5, 12};
ylist = {92, 92, 91, 89, 87, 83, 80, 78, 81, 82, 81, 82, 81, 81, 81,
80, 79, 78, 76, 74, 71, 68, 66, 65 };
ListPlot[Transpose[{xlist, ylist}]]
I want to plot both of these sets of data on one graph, I was looking through the support db's and I couldn't find anything. Any help would be appreciated.
URL: , |
|