What’s wrong?

3 ビュー (過去 30 日間)
Aurelius Hardy
Aurelius Hardy 2021 年 2 月 12 日
コメント済み: Rik 2021 年 2 月 12 日
what am i doing wrong? plot not showing up. the t&v is in parenthesis
  2 件のコメント
Kevin Barkett
Kevin Barkett 2021 年 2 月 12 日
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 2021 年 2 月 12 日
thank you

サインインしてコメントする。

回答 (1 件)

Blue
Blue 2021 年 2 月 12 日
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 件のコメント
Aurelius Hardy
Aurelius Hardy 2021 年 2 月 12 日
thanks somethings finally coming up but why is it looking like this
Rik
Rik 2021 年 2 月 12 日
The code in the answer should not result in an image like you posted. What exact code did you use?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by