How do I get the title and label objects for an axes in MATLAB R2014b?

조회 수: 11 (최근 30일)
How do I get the title and label objects for an axes in MATLAB R2014b?

채택된 답변

MathWorks Support Team
MathWorks Support Team 2014년 10월 7일
Starting in MATLAB R2014b, the text objects used for graph titles and axis labels are no longer children of the axes. Instead, use the Title, XLabel, YLabel, and ZLabel properties of the axes to get the associated text objects.
For example, get the text objects used for the title and x-axis label.
ax = gca;
t = ax.Title;
xl = ax.XLabel;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

제품


릴리스

R2014b

Community Treasure Hunt

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

Start Hunting!

Translated by