What’s wrong?

5 views (last 30 days)
Aurelius Hardy
Aurelius Hardy on 12 Feb 2021
Commented: Rik on 12 Feb 2021
what am i doing wrong? plot not showing up. the t&v is in parenthesis
  2 Comments
Kevin Barkett
Kevin Barkett on 12 Feb 2021
Hi there,
It looks like the parenthesis of the variable 't' should not encapsulate that first colon, and also the arguments for the plot command should be contained within parenthesis. Try:
t = 0:(1/6000):(1/30);
v = (4*cos((120*pi*t)+(pi/3)));
plot(t,v);
Cheers, Kevin
Aurelius Hardy
Aurelius Hardy on 12 Feb 2021
thank you

Sign in to comment.

Answers (1)

Blue
Blue on 12 Feb 2021
Is this what you want ? Works fine.
t = 0:1/6000:1/30
v = (4*cos((120*pi*t) + (pi/3)))
plot(t,v)
  2 Comments
Aurelius Hardy
Aurelius Hardy on 12 Feb 2021
thanks somethings finally coming up but why is it looking like this
Rik
Rik on 12 Feb 2021
The code in the answer should not result in an image like you posted. What exact code did you use?

Sign in to comment.

Categories

Find more on Graphics Performance in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!