How do I plot signal for equation given below?

 Respuesta aceptada

Ameer Hamza
Ameer Hamza el 29 de Abr. de 2020
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)

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 29 de Abr. de 2020

Respondida:

el 29 de Abr. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by