Am 7 Feb 2006 um 12:20 hat Fabrizio Caruso geschrieben:
> Hi!
>
> Sorry to bother you again with a question about plot2d.
> It seems to me that I haven't still understood
> how gnuplot_curve_styles works.
>
> For instance I need to draw points and lines
> in the same window.
>
> If I do:
>
> plot2d([[discrete,[[0,0],[1,1]]],[discrete,[[1,0],[0,1]]]],[gnuplot_curve_styles,["with
> lines 2"],["with points 3"]]);
>
> I only get lines.
>
just a little change:
plot2d( [ [discrete,[[0,0],[1,1]]],
[discrete,[[1,0],[0,1]]] ],
[gnuplot_curve_styles, ["with lines 2","with points 3"] ]);
you only need one list of curve styles
Volker van Nek