How to plot points without line
483 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to plot the following command
as points rather than a linear line how do i do that?
0 件のコメント
採用された回答
その他の回答 (1 件)
Reza Mohammadkhani
2020 年 3 月 23 日
Sets the line style as none, and select a marker as you like. For example:
plot(x, y,'linestyle','none','marker','o')
2 件のコメント
Moose
2023 年 4 月 25 日
Can't upvote this but your response just answered a question I've been puzzling over for entirely too long haha. thank you so much!!
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!