regards
Martin
plot 3
should do just that.
> Also, how would I provide a few points in the plain and tell gnuplot to
> draw a line through some of them?
I believe, this problem is a bit ill-defined. Suppose you have this
data file
# x y
1 1
1.4 5
2.0 3
3.0 2
If you want to draw a line through (1.4, 5) and (3.0, 2) you can say
set arrow 1 from 1.4, 5 to 3.0, 2 nohead
or you could say
f(x) = x*(2.0-5.0)/1.6 + 1.4
plot f(x)
It's not clear how you want to choose the points across which you lay
your line.
Cheers,
Zoltán
Thanks Zoltan,
That's exactly what I meant. I'll give it a try now
regards
Martin