i would like to know how can i display my time position instead of title with code num2str () '%4i' in bottom right. The data comes from an excel table.

 採用された回答

Chad Greene
Chad Greene 2021 年 5 月 5 日

1 投票

This question is pretty vague, but here's pi displayed at the bottom right corner of a plot:
txt = text(1,0,num2str(pi,'%4i'),'horiz','right','vert','bot','units','normalized');

3 件のコメント

Ali Golmohammadi
Ali Golmohammadi 2021 年 5 月 5 日
thanks. i want to show changing time from a excel file in right bottom.but as well i cant add with your codes some text to it.
txt = text(1,0,'Measuring time in seconds',num2str(Row(q,3),'%4i'),'horiz','right','vert','bot','units','normalized');
Chad Greene
Chad Greene 2021 年 5 月 5 日
For the Excel question I recommend opening a separate question specifically about that part of your question.
To add words to the text, put it in square brackets, like this:
txt = text(1,0,['Easy as ',num2str(pi,'%4i')],'horiz','right','vert','bot','units','normalized');
Ali Golmohammadi
Ali Golmohammadi 2021 年 5 月 5 日
thanks a lot.

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

その他の回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by