Subject: discrete plot doesn't honor x and y ranges?
From: Jaime E. Villate
Date: Wed, 16 Nov 2005 12:15:25 +0000
On Tue, Nov 15, 2005 at 06:43:04PM -0800, Daniel Lakeland wrote:
> Using maxima 5.9.2 from Debian with gnuplot 4.0.0
>
> exes:[0,1,2,3,4,5,6,7];
> ys:[10,5,6,9,33,7,4,1];
>
> plot2d([discrete,exes,ys],[x,0,10],[y,0,10]);
You can also use graph2d (http://fisica.fe.up.pt/maxima/graph2d/)
exes:[0,1,2,3,4,5,6,7];
ys:[10,5,6,9,33,7,4,1];
graph2d(exes,ys,[xradius,5],[yradius,5],[xcenter,5],[ycenter,5]);
Cheers,
Jaime