how to display figures on a plot

2 visualizaciones (últimos 30 días)
Postit123
Postit123 el 19 de Nov. de 2020
Comentada: Postit123 el 19 de Nov. de 2020
Hello
I want to display mean and std with some text in a text box on a plot.
For now, I don't know how to relate the values, so I just write the code like this.
I put values one by one after calculating mean and std.
is there any way to take values automatically to the annotation?
Thank you in advance.
[xyz, mn, st] = nmea(stop);
% mn = mean
% st = std
plot(1:length(stop),xyz);
xlabel('time [sec]');
ylabel('position [m]')
legend('x','y','z');
str = {'mean_x = -3035497.2060m';'mean_y = 4047836.2866m';'mean_z = 3896386.6521m';'std_x = 1.7452m'; 'std_y = 1.1734m'; 'std_z = 1.9720m'};
dim = [0.53 0.27 .2 .2];
annotation('textbox',dim,'String',str,'FitBoxToText','on');

Respuesta aceptada

Alan Stevens
Alan Stevens el 19 de Nov. de 2020
str = {['mean_x = ',num2str(mean(x))],...etc}
for example.
Type: doc num2str in the command window.
  2 comentarios
Rik
Rik el 19 de Nov. de 2020
I personally prefer sprintf, because it allows you more control and is trivial to adapt to write content to a file instead.
Postit123
Postit123 el 19 de Nov. de 2020
Thank you! I've tried both and successfully displayed mean and std.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by