Go to the first, previous, next, last section, table of contents.


gnuplot.plot_dots

gnuplot.plot_dots(d,s|proc=p)
:: 点の集合 d をスタイル s でプロットする.
return
なし
p
d
リスト
s
文字列 または 0
[239] P = gnuplot.start();
0
[240] gnuplot.plot_dots([ ],0);            
0
[241] for (I=0; I<10; I++) gnuplot.plot_dots([[I,I^2]]," lines ");
[242] A = [ ];
[]
[243] for (I=0; I<10; I++) A = append(A,[ [I,I^2]]);
[244] A;
[[0,0],[1,1],[2,4],[3,9],[4,16],[5,25],[6,36],[7,49],[8,64],[9,81]]
[245] gnuplot.plot_dots(A," lines ");
0
参照
gnuplot.start, plot "fileName" with options(GNUPLOT command), gnuplot.clean, gnuplot


Go to the first, previous, next, last section, table of contents.