how to plot graph?
古いコメントを表示
x=[10, 20 ,30,40,50]
y=[0.987, 0.972, 0.958, 0.938, 0.919]
i want to plot this point but every time giving error..plz help me
回答 (1 件)
Arthur Roué
2020 年 7 月 17 日
編集済み: Arthur Roué
2020 年 7 月 17 日
x=[10, 20 ,30,40,50]
y=[0.987, 0.972, 0.958, 0.938, 0.919]
plot(x, y, 'LineStyle', 'none', 'Marker', '.')
Here is the plot documentation. When struggling with a function, the matlab documentation is here for you !
1 件のコメント
Arthur Roué
2020 年 7 月 23 日
Did you manage to plot your graph ?
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!