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


gnuplot_plot_dots

gnuplot_plot_dots(d,s|proc=p)
:: Plot the dots d with the style s.
return
Void
p
Number
d
List
s
String or 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
Reference
gnuplot_start, plot "fileName" with options(GNUPLOT command), gnuplot_clean, gnuplot


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