|
On Jun 28, 10:08 pm, parham <parham_...@yahoo.com> wrote:
> my question was this
> x = -2*pi: pi/100 : 2*pi;
> for q = 1:length(x);
> y(q) = sin(x(q));
> plot(x(q),y(q),'Marker','o')
> M(q)=getframe;
> hold on
> end
> movie(M,4)
> and your help cause that I can solve it.thank you very much.I am iranian,your name is like iranian name,anyway thank you veryyyy much
hi
Dear Parham
if you want draw plot and see drawing ,comet function lead to best
result,for example
x = -2*pi: pi/1000 : 2*pi;
y=sin(x)
comet(x,y,0.4)
so .... I think you training hard for your exam but movie function is
not in base text(getting started)...
good luck
|