How can i draw an exponential curve for a damped sine wave?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I can do it manually by taking the peak points. Is there any other way?
0 Kommentare
Antworten (2)
KSSV
am 13 Jun. 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
am 13 Jun. 2018
Bearbeitet: Jan
am 13 Jun. 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 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!