フィルターのクリア

how can i add text inside subplot(1,3,3) writing code

16 ビュー (過去 30 日間)
zainab srabony
zainab srabony 2018 年 7 月 3 日
回答済み: jonas 2018 年 7 月 3 日
  2 件のコメント
Rik
Rik 2018 年 7 月 3 日
What is your actual question?
Have a read here and here. It will greatly improve your chances of getting an answer.
zainab srabony
zainab srabony 2018 年 7 月 3 日
編集済み: zainab srabony 2018 年 7 月 3 日
this is my code.and i just put text on subplot(1,3,3) in output figure.

サインインしてコメントする。

回答 (1 件)

jonas
jonas 2018 年 7 月 3 日
Here are two methods. In the first one, x and y refers to the axis coordinates. Make sure you set the current axis to the correct subplot
text(x,y,'text')
In the second one, x and y refers to the figure coordinates
annotation('textbox',[x y w h],...
'string','text',...
'linestyle','none')

カテゴリ

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

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by