How to add calculated parameters in to plot title

19 vues (au cours des 30 derniers jours)
Mekala balaji
Mekala balaji le 4 Avr 2019
Commenté : Star Strider le 5 Avr 2019
Hi,
I have below example plot, and I want to add more calculated parameters, but it give error.
x_variable=1:1:10;
y_variable=0.1:0.1:1;
mean_ab=mean(x_variable);
max_ab=max(x_variable);
std_ab=std(x_variable);
plot(x_variable,y_variable,'b--o')
title('x_variable:', mean_ab, max_ab, std_ab)
error is below:
Index exceeds matrix dimensions.
Error in titleplot (line 15)
title('x_variable:', mean_ab, max_ab, std_ab)

Réponse acceptée

Star Strider
Star Strider le 4 Avr 2019
Try this:
title(sprintf('x\\_variable: \\mu = %.2f, max = %.2f, \\sigma = %.2f', mean_ab, max_ab, std_ab))
Experiment to get the result you want.
  4 commentaires
Mekala balaji
Mekala balaji le 5 Avr 2019
Thanks,
Star Strider
Star Strider le 5 Avr 2019
As always, my pleasure.

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by