Can someone help me with the representation of the signals?

1 回表示 (過去 30 日間)
Novicov Ioan
Novicov Ioan 2022 年 12 月 11 日
コメント済み: Novicov Ioan 2022 年 12 月 11 日

回答 (2 件)

Stephan
Stephan 2022 年 12 月 11 日
編集済み: Stephan 2022 年 12 月 11 日
plot can not show one single point. Use at least 2 points for w to get a plot - or use scatter.
w=0:10:500;
To avoid further errors replace
w^2
by
w.^2

Image Analyst
Image Analyst 2022 年 12 月 11 日
Attach your script. No one wants to type in 12 lines of code just to help you when you could just as easily copy and paste it here. And you need to plot a marker if you just want a single point, like to plot a blue dot do this:
plot(someValue, 'b.', 'MarkerSize', 50)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by