How can i draw an exponential curve for a damped sine wave?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I can do it manually by taking the peak points. Is there any other way?
0 commentaires
Réponses (2)
KSSV
le 13 Juin 2018
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
le 13 Juin 2018
Modifié(e) : Jan
le 13 Juin 2018
See:
- https://www.mathworks.com/matlabcentral/answers/168557-how-can-i-draw-the-corresponding-exponential-decay-curve-to-fit-a-damped-sine-wave
- https://www.mathworks.com/matlabcentral/answers/168113-how-to-find-spectrum-envelope-from-wav-file#answer_163469
- https://www.mathworks.com/matlabcentral/answers/230614-how-to-fit-damped-oscillation-curves
- https://stackoverflow.com/questions/18192657/matlab-finding-damped-sine-wave-decay-factor-for-a-given-frequency
Meta message: A search in the forum and the net can be very useful.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!