plotting a sine or cosine wave with specific time with specific cycles
10 views (last 30 days)
Show older comments
Mohanned Al Gharawi
on 15 Feb 2022
Commented: Mohanned Al Gharawi
on 15 Feb 2022
Hello, hope you're doing well.
I want to plot the attache sine graph with 50 cycles and 33 sec. I have tried several codes but didnt work.
Could someone help me with that?
Thanks in advance.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/895510/image.jpeg)
0 Comments
Accepted Answer
Benjamin Thompson
on 15 Feb 2022
By 50 cycles, I understand that you mean that over 33 seconds the signal should have 50 periods.
>> t = 0:(1/50):33;
>> x = 2*sin(2*pi*50/33*t);
>> figure, plot(t, x)
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!