Filter löschen
Filter löschen

Putting Annotation on Plot Area

7 Ansichten (letzte 30 Tage)
Nicholas
Nicholas am 16 Sep. 2015
Beantwortet: Walter Roberson am 16 Sep. 2015
I have a plot of variables and a variable called 'name' which contains a string. I want to have a text box display the string contained in the variable named. I have the following code:
figure
plot(SR,Pcr)
title('Critical Buckling Load vs Slenderness Ratio')
xlabel('Slenderness Ratio')
ylabel('Critical Buckling Load')
annotation('textbox',sprintf(name),'FitBoxToText','on');
end

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 16 Sep. 2015
boxsize = [.2 .2 .8 .1]; %for example
annotation('textbox', boxsize, 'String', name, 'FitBoxToText','on');

Weitere Antworten (0)

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by