Windowing a sine signal

4 views (last 30 days)
Suraj Narayan
Suraj Narayan on 18 Oct 2020
Commented: Ameer Hamza on 18 Oct 2020
I dont know what is windowing. Or it is writen wrong, So correct me if it is wrong and help me to solve this problem.
I tried but it is out-off my knowledge.

Accepted Answer

Ameer Hamza
Ameer Hamza on 18 Oct 2020
Edited: Ameer Hamza on 18 Oct 2020
This shows an example of windowing a signal
t = linspace(-2*pi, 2*pi);
y = sin(t);
window = (t-0 > 0) - (t-2 > 0);
windowed_y = window.*y;
subplot(2,1,1)
plot(t, y);
subplot(2,1,2)
plot(t, windowed_y);
  2 Comments
Suraj Narayan
Suraj Narayan on 18 Oct 2020
Thanks it's a great help...
Ameer Hamza
Ameer Hamza on 18 Oct 2020
I am glad to be of help!

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!