How can i draw an exponential curve for a damped sine wave?

4 ビュー (過去 30 日間)
Neha Sinha
Neha Sinha 2018 年 6 月 13 日
編集済み: Jan 2018 年 6 月 13 日
I can do it manually by taking the peak points. Is there any other way?

回答 (2 件)

KSSV
KSSV 2018 年 6 月 13 日
A=10;
f=1000;
n=5;
T=1/f;
t=[0:T/100:n*T];
s=A*exp(-t*1000).*sin(2*pi*f*t);
plot(t,s)

Jan
Jan 2018 年 6 月 13 日
編集済み: Jan 2018 年 6 月 13 日

カテゴリ

Help Center および File ExchangePhysics についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by