• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-05
  • 语言: Matlab
  • 标签: matlab  动画  钟摆  

资源简介

用matlab编写的小动画程序,实现钟摆功能。摆动、分针、秒针、时针相应跳动。

资源截图

代码片段和文件信息

function pendulum(l)
figure
xmax=1.3*1;ymax=1.3*1;bas=3*1;bash=3*1;
fill([-xmax-0.05xmax+0.05xmax+0.05-xmax-0.05][ymax/50ymax/50-ymax/50-ymax/50][00.50]);
hold on
fill([-xmax-0.025-xmax-0.005-xmax+0.005-xmax+0.025][ymax/50ymax/50+0.2ymax/50+0.2ymax/50][000.5]);
hold on
fill([xmax-0.025xmax-0.005xmax+0.005xmax+0.025][ymax/50ymax/50+0.2ymax/50+0.2ymax/50][000.5]);
hold on
t=0:pi/100:2*pi;Y=0.1*exp(i*t)+xmax+(ymax/50+0.2)*i;
plot(Y);hold on
t=0:pi/100:2*pi;Y=0.1*exp(i*t)-xmax+(ymax/50+0.2)*i;
plot(Y);hold on
plot([-xmaxxmax]

评论

共有 条评论