How do I plot signal for equation given below?

 Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 29 Apr. 2020

0 Stimmen

Try this
t = linspace(0, 10, 100);
w = 1;
a = 1;
y1 = sin(w*t)./t;
y2 = sin(a*t).*sinh(a*t)./(2*a^2);
y3 = (exp(-t)+exp(-3*t)).*heaviside(t);
subplot(3,1,1)
plot(t, y1)
subplot(3,1,2)
plot(t, y2)
subplot(3,1,3)
plot(t, y3)

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by