Borrar filtros
Borrar filtros

Putting Annotation on Plot Area

7 visualizaciones (últimos 30 días)
Nicholas
Nicholas el 16 de Sept. de 2015
Respondida: Walter Roberson el 16 de Sept. de 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

Respuesta aceptada

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

Más respuestas (0)

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by