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

168 次查看(过去 30 天)
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

采纳的回答

the cyclist
the cyclist 2019-10-7
编辑:the cyclist 2019-10-7
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by