how to plot a continuous signal

10 visualizaciones (últimos 30 días)
amina sundas
amina sundas el 23 de En. de 2017
Comentada: Leane Armada el 22 de Oct. de 2020
i am unable to plot the following signal can anyone help me? x(t)=20t^2(1-t)^4cos(12*pi*t)

Respuesta aceptada

Star Strider
Star Strider el 23 de En. de 2017
Sounds like homework ...
x = @(t) 20*t.^2.*(1-t).^4.*cos(12*pi*t);
t = linspace(0, 1);
figure(1)
plot(t, x(t))
grid
  9 comentarios
Star Strider
Star Strider el 5 de Feb. de 2017
Perhaps.
Post it as a new Question.
Leane Armada
Leane Armada el 22 de Oct. de 2020
hi. can you help me with this problem ?
sketch the continuous time signal
x(t) = u(t+1) - 2u(t-1) + u(t-3)

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by