Y data addition on scatter plot
1 回表示 (過去 30 日間)
古いコメントを表示
i am plotting a scatter plot X= [ 2 ,3,4,5] Y=[10,20,30,40] scatter(X,Y) i am looking for putting y values on the scatter plot...any specific code or hint can anyone help.i am using 2016b version.Thank you in advance.
1 件のコメント
Voss
2022 年 1 月 17 日
Well, the code - as you have it now - works:
X= [ 2 ,3,4,5]
Y=[10,20,30,40]
scatter(X,Y)
採用された回答
Voss
2022 年 1 月 17 日
You need to convert those cell arrays to numeric matrices before you can plot them (scatter or otherwise):
X= { 2 ,3,4,5}
Y={ 10,20,30,40}
scatter(cell2mat(X),cell2mat(Y))
その他の回答 (1 件)
Cris LaPierre
2022 年 1 月 17 日
編集済み: Cris LaPierre
2022 年 1 月 17 日
Use square brackets to define vectors, not curly braces. You might find MATLAB Onramp helpful, especially chapters 2, 4 & 9. Also, capitalization matters in MATLAB. X is not the same variable as x.
X= [2,3,4,5];
Y=[10,20,30,40];
scatter(X,Y)
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!