필터 지우기
필터 지우기

How to add blank space using text function?

조회 수: 8 (최근 30일)
John
John 2017년 6월 13일
답변: Star Strider 2017년 6월 13일
Using text function,
x = 1;
y = 1;
str1 = '1 2 3 4 5 6 7 8 9';
str2 = '4 5 6';
text(x, y, {str1; str2})
I would like to center str2 under str1 in the plot. Using a blank space before the characters in str2 does not seem to shift the characters appropriately. How can blank spaces be entered?

채택된 답변

Star Strider
Star Strider 2017년 6월 13일
Use the 'HorizontalAlignment' name-value pair option.
This does what you want when I ran it (in R2017a):
text(x, y, {str1; str2}, 'HorizontalAlignment','center')

추가 답변 (0개)

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by