generate a sine and cosine wave with 4 cycles .

Pls give be a code to generate a sine and cosine wave with 4 cycles . No specified frequency just want four cycles.

2 Comments

This is not twitter: no # before the tags.
The questions sounds like a homework. Then the forum will not solve it fr you, because this would be a drawback for your success.
Please post, what you have tried so far and ask a specific question to your code. You will need 1 line of code only and the commands: plot, sin, cos. With a:b:c you create a vector from the value of a in steps of b until c.
U mean x=0:1:3; y=sin(x); stem(x,y);is it crt. I want discrete so I am using this stem fn. @jan

Sign in to comment.

 Accepted Answer

0:1:3 is [0,1,2,3]. This is less than 4 cycles. 4 cycles mean:
x = 0:0.1:8*pi
stem() is working. plot(x,y, '.') is an option also.

More Answers (1)

Categories

Products

Release

R2021a

Asked:

on 25 Jul 2021

Answered:

on 16 Nov 2024

Community Treasure Hunt

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

Start Hunting!