How can I plot cosine/sine wave with exponential function?
Ältere Kommentare anzeigen
Hi all,
I have some rusty about plotting cosine/sine with exponential function, can someone help me with this function?
y(t)= -(1/2)cos(t)+(1/2)exp(-t)+(1/2)t*exp(-t)?
Thank you very much
Twinsen
Antworten (2)
Bhaskar R
am 10 Jan. 2020
Fs = 10000; % samples persecond
t = (0:1/Fs:1-(1/Fs)); % seconds
A = 1/2; % amplitude
y = -A*cos(t)+A*exp(-t)+A*t.*exp(-t); % your equation
plot(t, y), xlabel('Samples '), ylabel('Amplitude'); % plot signal
grid on
Avinash Kumar
am 25 Mär. 2022
0 Stimmen
Fs = 10000; % samples persecond t = (0:1/Fs:1-(1/Fs)); % seconds A = 1/2; % amplitude y = -A*cos(t)+A*exp(-t)+A*t.*exp(-t); % your equation plot(t, y), xlabel('Samples '), ylabel('Amplitude'); % plot signal grid on
Kategorien
Mehr zu Discrete Fourier and Cosine Transforms finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!