Backward stairs plot in MATLAB

8 vues (au cours des 30 derniers jours)
Tawichai Premgamone
Tawichai Premgamone le 4 Déc 2022
Commenté : Voss le 4 Déc 2022
Hello community,
I have a question about the function "stairs" for plotting in 2D.
When using this function, normally, the horizontal lines (stairs) will break away to the right side of the data points (shown in the red plot), like a zero-order-hold function.
However, I have a situation where the horizontal lines must be on the left side instead (see the blue plot, which I simply made in Paint).
I think many applications might need this kind of backward plot, e.g. when data is obtained after a long measurement window, and the timestamps (plotted on x-axis) are made at the time when the measurement value is available. Each data point represents the value in the past, not the future. Therefore, a normal stairs plot will not be the most appropriate visualisation for this application.
Theoretically, I could also minus the time-axis by 1 sample period, but I wonder if this can be done smartly using a property of the stairs function itself, so I can keep the timestamps unmodified.
Thanks

Réponse acceptée

Voss
Voss le 4 Déc 2022
Modifié(e) : Voss le 4 Déc 2022
x = 1:8;
y = [3 1 4 3 7 3 4 2];
stairs(flip(x),flip(y),'-b')
hold on
stairs(x,y,'--r')
legend('Backward','Normal')
ylim([0 8])
  2 commentaires
Tawichai Premgamone
Tawichai Premgamone le 4 Déc 2022
Brilliant!!
Thanks a lot Voss.
Voss
Voss le 4 Déc 2022
You're welcome!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by