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

3 views (last 30 days)
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 Comments
darova
darova on 9 Aug 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 on 9 Aug 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

Sign in to comment.

Accepted Answer

darova
darova on 9 Aug 2019
One full cycle of sine is 2pi
You should make your argument of sine: 0 .. 2pi*5
img11.png
  14 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!