Effacer les filtres
Effacer les filtres

How to add specific y-value in y-axis of plot

28 vues (au cours des 30 derniers jours)
Zeyad Elreedy
Zeyad Elreedy le 17 Déc 2022
Commenté : Zeyad Elreedy le 18 Déc 2022
Hello, I have the following graph which includes a waveform and its mean. Now, I want to add a value in the y-axis that directly corresponds to the mean, as highlighted below.
Is there a way to do this?

Réponse acceptée

the cyclist
the cyclist le 17 Déc 2022
Modifié(e) : the cyclist le 17 Déc 2022
You could use either the text or annotation function to do that.
Here is an example using text:
rng default
x = rand(5,1);
meanx = mean(x);
figure
plot(x)
yline(meanx,'r')
text(0.6,meanx,sprintf('%6.2f',meanx))
  3 commentaires
the cyclist
the cyclist le 17 Déc 2022
Yes, you could do something like this:
rng default
x = rand(5,1);
meanx = mean(x);
figure
plot(x)
yline(meanx)
set(gca,'YTick',sort([0.1 : 0.1 : 1, meanx]))
I did the sort(), because the ticks have to be in ascending order, and I think that is probably the easiest way.
You could do something more clever with
set(gca,'YTickLabel',<formatted labels here>)
if the higher precision for the mean is a problem.
Zeyad Elreedy
Zeyad Elreedy le 18 Déc 2022
Great, thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by