Scatter3: How can I change the size of a particular marker?

160 vues (au cours des 30 derniers jours)
Michael Lin
Michael Lin le 7 Oct 2019
Commenté : Michael Lin le 7 Oct 2019
Hi all,
I want to draw a scatter3 figure and add a point on top of it but make it bigger and filled with red.
Here's my code:
hold on;
scatter3(1stArray(:,1),1stArray(:,2),1stArray(:,3)); % draw scatter plot with all the points in the cell array
scatter3(x, y, z, 30); % I'm trying to make this point bigger by specifying the size to be 30, but it doesn't do anything.
Can I get some help?
Thanks

Réponse acceptée

the cyclist
the cyclist le 7 Oct 2019
Modifié(e) : the cyclist le 7 Oct 2019
This puzzled me for a bit -- until I read the documentation a bit more carefully.
For scatter3, the marker size specified is the area of the marker. (In other plot types such as the plot command, it is the width of the marker.)
The default marker area is 36 points squared, so you actually made it a bit smaller.
N = 50;
figure
hold on
scatter3(rand(N,1),rand(N,1),rand(N,1))
scatter3(0.5,0.5,0.5,3000) % I made your value a lot bigger
  1 commentaire
Michael Lin
Michael Lin le 7 Oct 2019
Awesome. Thanks!!! No wonder it doesn't work :D

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Produits


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by