fd 发帖数: 5 | 1 有一组数(ti,xi)(i=1,...,n),用什么命令可以画出呢?
谢谢 | s*********e 发帖数: 97 | 2 use gnuplot (it is free software):
if the your matrix is in a datafile
plot "datafile" using 1:2 w l
or U can use octave (free and compatiable with matlab)
a=[1,2;3,4;5,6];# your 2 column matrix
plot (a(1:end,1),a(1:end,2)) | l*****i 发帖数: 3929 | 3 plot(t,x)
【在 fd 的大作中提到】 : 有一组数(ti,xi)(i=1,...,n),用什么命令可以画出呢? : 谢谢
|
|