compass plot label FontSize

9 次查看(过去 30 天)
Please could you tell me if it is possible to specify a font size of, say, 14 for the r and theta axes of a compass plot? I have tried using ax = gca and ax.FontSize =... and rticklabels but I can't get anything to work. Apologies if I have missed some documentation...

采纳的回答

Adam Danz
Adam Danz 2021-5-12
编辑:Adam Danz 2021-5-12
compass() still uses the old polar axes that are actually cartesian axes with circles and radii to appear as polar axes. The tick labels are just text objects since there aren't really theta or rho axis-components.
Get the tick labels by searching text objects.
u = [5 3 -4 -3 5];
v = [1 5 3 -2 -6];
h = compass(u,v);
ax = ancestor(h(1),'axes');
th = findall(ax,'Type','Text');
set(th, 'FontSize', 14)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Polar Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by