How to rescale the size of points in scatter plot?
7 ビュー (過去 30 日間)
古いコメントを表示
I generated scatter plot for four variables where one variable specify the size of dots. However, all dots are to small. How to increase the size (e.g. twice bigger dots) of all dots automatically?
scatter(A,B,C,D,'filled','MarkerFaceAlpha',.5);
0 件のコメント
採用された回答
KSSV
2017 年 1 月 6 日
scatter(A,B,C,D,n,'filled','MarkerFaceAlpha',.5);
where n is size of the marker....specify the size you want..
4 件のコメント
その他の回答 (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!