Point out the error
古いコメントを表示
Matlab script to animate the motion of vibrating guitar
A= 2;
L= 10;
f= 50;
ta= 2;
x=0:0.1:L;
T=5 ;
t=0;
for t < T
y=(A)*(exp^(-t/ta))*(sin((2*pi*x)/L))*(cos(2*pi*f*t));
plot(x,y)
t=t+0.1;
pause(0.5)
end
1 件のコメント
per isakson
2015 年 10 月 6 日
編集済み: per isakson
2015 年 10 月 6 日
Any error messages?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Acoustics, Noise and Vibration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!