Dot size when using scatterplot()
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Christopher Vergara
il 19 Mag 2018
Commentato: Christopher Vergara
il 20 Mag 2018
Hey,
Is it at all possible to increase the dot size on the output of the scatterplot() function?
I've had a look at the properties of the handle and I don't think any of them can help.
Thanks, Chris
0 Commenti
Risposta accettata
Walter Roberson
il 19 Mag 2018
h = scatterplot(x, y);
obj = findobj(h.Children(1).Children, 'type', 'line');
set(obj, 'MarkerSize', 10)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!