3d points



On 8/11/07, Thomas Schwander <thomas_schwander at web.de> wrote:

> I'm trying to plot a point in a 3d coordinate system but I have no glue how
> to make it. I thought that it is described in the help of "plot3d", but I
> couldn't find?

Maybe dataplot is useful here.
? dataplot
should display some info.

load (descriptive);
a : genmatrix (lambda ([i, j], random (1.0)), 20, 3);
dataplot (a);

HTH
Robert Dodier