How to rescale the size of points in scatter plot?
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
KSSV
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!