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

조회 수: 163 (최근 30일)
Michael Lin
Michael Lin 2019년 10월 7일
댓글: Michael Lin 2019년 10월 7일
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