How do i plot?

1 vue (au cours des 30 derniers jours)
Wei Jun Lee
Wei Jun Lee le 25 Avr 2018
Commenté : Wei Jun Lee le 25 Avr 2018
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.
  1 commentaire
Aniket Patil
Aniket Patil le 25 Avr 2018
Please provide good expression.

Connectez-vous pour commenter.

Réponse acceptée

Pawel Jastrzebski
Pawel Jastrzebski le 25 Avr 2018
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:
  1 commentaire
Wei Jun Lee
Wei Jun Lee le 25 Avr 2018
Yes, thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by