Plotting issues



Raymond Toy ?????:
>>>>>>"Vadim" == Vadim V Zhytnikov <vvzhy@mail.ru> writes:
>>>>>
> 
>     Vadim> Plaing with plot3d I noticed yes another bug
> 
>     Vadim> plot3d(1,[x,0,3],[y,0,3]);
>     Vadim> plot3d(sin(x),[x,0,3],[y,0,3]);
> 
>     Vadim> produce lisp errors. It seems that plot3d require the expression to
>     Vadim> have explicit dependence on exactly two plotting range variables.
> 
> I see that.  CMUCL says I didn't supply enough args.  Not sure what to
> do about that.
> 
>     Vadim> Notice that
> 
>     Vadim> plot2d(1,[x,0,3]);
> 
>     Vadim> works well.
> 
> Not for me.  On CMUCL, I get a bus error.
> 
> Need to look into this....
> 
> Ray
> 
> 

I've just checked.

plot3d(1,[x,0,3],[y,0,3])

always result in lisp error no matter which lisp we use.

Situation with

plot2d(1,[x,0,3]);

is different. Both gcl and clisp produces some plots.
But they are different and probably only clisp's one
is correct. cmucl indeed produces an error.

This is clearly bug

Best wishes,

Vadim