[scilab-Users] comet command?

Samuel Gougeon Samuel.Gougeon at univ-lemans.fr
Fri Mar 4 12:56:18 CET 2011


Hello,

David Arnold <dwarnold45 at suddenlink.net> a écrit :

> Hi,
>
> In matlab, I can animate a parametric plot with the comet command:
>
> t=linspace(0,2*pi,5000);
> x=cos(t);
> y=sin(t);
> comet(x,y)
>
> Is there a command in scilab that will do this?


paramfplot2d() is the nearest, but it works only in
cartesian coordinates. It does not support parametric
plot (except if x is inversible over the t range, what
is not the case on your simple example).

You may edit paramfplot2d(), copy and customize the
copy for your needs:
edit paramfplot2d
See also and run its example: help paramfplot2d

Regards
Samuel





More information about the users mailing list