필터 지우기
필터 지우기

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

조회 수: 8 (최근 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 CenterFile Exchange에서 Historical Contests에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by