Mathematica如何用一个list画2个图例如{(x1,y1),(x2,y2).(xn,yn)}要画(1,x1),.(n,xn)和 (1,y1),(n,yn)的图
问题描述:
Mathematica如何用一个list画2个图
例如{(x1,y1),(x2,y2).(xn,yn)}要画(1,x1),.(n,xn)和 (1,y1),(n,yn)的图
答
ListPlot /@ Transpose[{(x1,y1),(x2,y2).(xn,yn)}]
(*Mathematica_7.0*)