time position in graphic
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali Golmohammadi
am 5 Mai 2021
Kommentiert: Ali Golmohammadi
am 5 Mai 2021
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.
0 Kommentare
Akzeptierte Antwort
Chad Greene
am 5 Mai 2021
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 Kommentare
Chad Greene
am 5 Mai 2021
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');
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!