What's the diameter of the standard circle marker 'o' in scatter3 plot ?

조회 수: 1 (최근 30일)
Does anyone know how to find out the diameter size of the standard circle marker 'o' on a scatter3 plot?

채택된 답변

Adam Danz
Adam Danz 2020년 9월 12일
편집: Adam Danz 2020년 9월 12일
The size of scatter objects are in point units where 1 point equals 1/72 inch.
Plot a single point and look at it's SizeData.
h = scatter3(0,0,0);
h.SizeData
% ans =
% 36
so, the default size is 36/72 or 1/2 inch.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by