How to rescale the size of points in scatter plot?
8 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
KSSV
on 6 Jan 2017
scatter(A,B,C,D,n,'filled','MarkerFaceAlpha',.5);
where n is size of the marker....specify the size you want..
4 Comments
More Answers (0)
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!