how to plot a continuous signal

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

amina sundas
amina sundas el 24 de En. de 2017
thank you and yes a part of homework.. now i gotta find its haar transform..
Star Strider
Star Strider el 24 de En. de 2017
My pleasure.
That should be relatively straightforward with the Wavelet Toolbox.
amina sundas
amina sundas el 29 de En. de 2017
yeah i need to update my matlab. seems i dont have wavelet toolbox.
Star Strider
Star Strider el 29 de En. de 2017
You need it if you want to work with wavelets. (I don’t use it often enough to be comfortable dealing with Questions about it.) It’s very useful for denoising signals with broadband noise, and for isolating specific features from signals.
amina sundas
amina sundas el 30 de En. de 2017
ahan.. im working on it, thank you for information.
Star Strider
Star Strider el 30 de En. de 2017
My pleasure.
amina sundas
amina sundas el 5 de Feb. de 2017
can you help me in another program
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)

Preguntada:

el 23 de En. de 2017

Comentada:

el 22 de Oct. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by