Error using text command in normalized form

6 ビュー (過去 30 日間)
ANKUR KUMAR
ANKUR KUMAR 2017 年 10 月 24 日
編集済み: Walter Roberson 2017 年 10 月 24 日
I wanted to write something on the MATLAB plot by using text command. I am getting an error while using the axis in the normalized form.
text('units','normalized',.4,.8,'mytext','Color','r')
I have tried not only this command, but also have tried with all possibilities (may except one possibility, which is right ) I am getting an error
Error using text
Too many non-property/value arguments.

採用された回答

Walter Roberson
Walter Roberson 2017 年 10 月 24 日
編集済み: Walter Roberson 2017 年 10 月 24 日
text('units', 'normalized', 'Position', [.4,.8,0], 'String', 'mytext', 'Color', 'r')
or
text(.4, .8, 'mytext', 'units', 'normalized', 'Color', 'r')
That is, the positional parameters need to be first.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDesktop についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by