马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
- t=[1:10000];
- t=mod(t,90);
- tr=randn(size(t));
- r=cos(t).*cos(t*6)+cos(t*9).*cos(tr*9);
- x=r.*cos(t+pi/2);
- y=r.*sin(t+pi/2);
- H=plot(x,y,'.','markersize',2);
- k=1;
- xlabel('Please press "space" key and stop this program!',...
- 'fontsize',12,'color','r');
- d=0;
- while k
- s=get(gcf,'currentkey');
- if strcmp(s,'space');
- clc;k=0;
- end
- t=t+cos(d+1);
- r=cos(t).*cos(t*6)+cos(t*9).*cos(tr*9);
- x=r.*cos(t+pi/2);
- y=r.*sin(t+pi/2);
- set(H,'xdata',x,'ydata',y);
- pause(0.1);
- end
- figure(gcf);
复制代码
|