gvdmoort wrote:
> I'm trying to plot with points of variable size with gnuplot 4.4 on a
> Debian testing platform.
>
> I've found this trick on
>
http://www.gnuplot.info/demo_canvas/pointsize.html:
>
> plot 'world.dat' with lines lt 3, \
> 'world.cor' using 1:2:(5.*rand(0)) with points lt 1 pt 6 ps
> variable
>
> I've tried something simple:
>
> gnuplot> splot '-' matrix with points pt 7 ps variable
> input data ('e' ends) > 0 1
> input data ('e' ends) > 2 3
> input data ('e' ends) > e
> input data ('e' ends) > e
>
> but the resulting plot has so huge points that they cover nearly all
> the plot, such I get a quasi full-red terminal...
Getting any point at all from that command is a bug.
The 3D matrix format provides implicit x,y values and one explicit z
value for each point. There is no additional (4th) data column from
which you can read a point size.
I am guessing that you really were aiming for a 2D plot?
In that case the command you want is
gnuplot> plot '-' matrix using 1:2:3 with points pt 7 ps variable
This command does work here using gnuplot version 4.4, but
the exact size of the points will depend on the terminal type.
Ethan