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

 採用された回答

Voss
Voss 2022 年 12 月 4 日
編集済み: Voss 2022 年 12 月 4 日

1 投票

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 件のコメント

Tawichai Premgamone
Tawichai Premgamone 2022 年 12 月 4 日
Brilliant!!
Thanks a lot Voss.
Voss
Voss 2022 年 12 月 4 日
You're welcome!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGraphics Performance についてさらに検索

製品

リリース

R2022b

質問済み:

2022 年 12 月 4 日

コメント済み:

2022 年 12 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by