sa gharibi
Newbie level 3
- Joined
- Dec 3, 2013
- Messages
- 4
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 19
I want to plot cos(2*pi *t) over t=[0 1] with 30 samples,please help me.
Last edited:
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
t = linspace(0,1,30);
plot(t, cos(2*pi*t));