Im having problem plotting the sinusoidal time signal for (5+cos(20pt))cos(2p(100)t), having Dt=0.0001s, t=0~0.02 sec.

 Respuesta aceptada

Pawel Jastrzebski
Pawel Jastrzebski el 25 de Abr. de 2018

0 votos

Is this what you meant?
dt = 0.0001;
t = 0:dt:0.02;
y = (5+cos(20*pi*t)).*cos(2*pi*100*t);
figure;
plot(t,y);
Output:

Más respuestas (0)

Categorías

Preguntada:

el 25 de Abr. de 2018

Comentada:

el 25 de Abr. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by