How to mirror a plot ?

301 vues (au cours des 30 derniers jours)
Ali nouri
Ali nouri le 24 Fév 2020
Commenté : DGM le 8 Mai 2022
Hi
I need a help, i want to mirror a plotaround y axis, but still have the same axis, can anybody help?
I have upload the plot as attachments.
  2 commentaires
Ankit
Ankit le 24 Fév 2020
try this
plot(-x(:,1), y(:,2));
Ali nouri
Ali nouri le 24 Fév 2020
but then x axis is negativ.

Connectez-vous pour commenter.

Réponse acceptée

Ankit
Ankit le 24 Fév 2020
Modifié(e) : Ankit le 24 Fév 2020
After your plot command, add the below line:
set(gca, 'XDir','reverse')
  5 commentaires
jose daniel hoyos giraldo
did you solve it?
DGM
DGM le 8 Mai 2022
?
x = -10:20;
y = x/10;
% the regular plot
plot(x,y,'k'); hold on
% the same series, but flipped on x
plot(-x,y,'b:')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Parametric Spectral Estimation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by