How to add Hann 5 cycles to the sine wave plot?

2 visualizzazioni (ultimi 30 giorni)
I would like to know how to add cycle to the sine plots?
The below one is a sine plot continuous how to make it short for only 5 cycles?where x here is the time and 200 is the load (kHz)
plot(x,sin(2*pi*200e3*x))
  2 Commenti
darova
darova il 9 Ago 2019
One full cycle of sine is 2pi
You should make your argument of sine: 0 .. 2pi*5
Change your x such that:
0 ... 2pi*200e3 0 ... 2pi*5
Ramesh Bala
Ramesh Bala il 9 Ago 2019
Hi Daravo
But my x is time vector
load('x.mat')
sf=200e3;
sinewave=sin(2*pi*sf*x);
figure(1);
plot(x, sinewave);
The above code gives a continuous sine plot
Note : kindly put your answers in the answer section as this will help me to accept it and vote it
Thanks

Accedi per commentare.

Risposta accettata

darova
darova il 9 Ago 2019
One full cycle of sine is 2pi
You should make your argument of sine: 0 .. 2pi*5
img11.png
  14 Commenti
Ramesh Bala
Ramesh Bala il 9 Ago 2019
Ah kien problem Thank you so much :)

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Prodotti


Release

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by