El jue, 19-04-2007 a las 10:11 -0500, Barton Willis escribi?:
> Do we have a plot3d version of:
>
> plot2d([discrete,xx,yy], ...)
>
> That is something like
>
> plot3d([discrete, [0,1,2],[0,1,2],[6,7,8]])
>
> Barton
>
>
Hi,
This should work with current cvs maxima:
load(draw);
xx: [1,2,3,4,5]$
yy: [4,5,7,1,2]$
zz: [3,2,1,9,4]$
xyz: [[10,15,12],[11,13,16],[16,10,11],[15,15,15]]$
draw3d(point_size = 3,
point_type = 7, /* should be more explicit in future versions */
color = blue,
points(xx,yy,zz),
point_type = 5,
color = green,
points_joined = true,
points(xyz));
--
Mario Rodriguez Riotorto
www.biomates.net