Scatter plot: dots in two different colors
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
Very simple issue but I still don't know how to solve it..
I am trying to produce a scatter plot of two arrays x, y using
scatter(pts1, ptcmems700)
xlabel('S1 θ (°C)');
ylabel('cmems θ (°C)');
How can I have dots belonging to pts1 being all red and dots beloging to ptcmems700 beign all black?
Thank you very much!
1 件のコメント
Smitesh Patil
2021 年 7 月 19 日
pts1 and ptcmems700 together define all the points, x and y coordinates repectively. What do you mean by dots belonging to pts1 and ptcmems700?
回答 (1 件)
KSSV
2021 年 7 月 19 日
scatter(pts1, ptcmems700,[],ptcmems700)
xlabel('S1 θ (°C)');
ylabel('cmems θ (°C)');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!