How to write variables values on a figure?
조회 수: 35 (최근 30일)
이전 댓글 표시
Hi, in my script i would like to write some variables values on a figure that i call it from a pushbutton Gui oriented. How can i call the figure in the right way and writting on it in a specific position of my picture.
PS: Notice i won't have axis to be oriented, but i don't know if this will be a problem or not.
Thanks in advance!
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2018년 11월 27일
편집: KALYAN ACHARJYA
2018년 11월 27일
This is an example
t=1:.01:10;
d=1; % here d is variable
dim=[0.5, 0.2, 0.1, 0.1]; %From here you can location the position of text
plot(sin(t));
str=sprintf('%.2f',d); %if No floting varibale number, use %d
annotation('textbox',dim,'String',str,'FitBoxToText','on');
For detail, check here
댓글 수: 4
KALYAN ACHARJYA
2018년 11월 27일
편집: KALYAN ACHARJYA
2018년 11월 27일
Welcome @Jucimar
I am glad, it helped.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!