onlyPlot =[ 95 143
91 289
91 427
77 551
77 671]
x=[onlyPlot(:,2)];
y=[onlyPlot(:,1)];
stairs(x,y,'LineWidth',2,'Marker','o','MarkerFaceColor','c');
axis([0,700,76,96])

 採用された回答

Jon
Jon 2021 年 11 月 15 日
編集済み: Jon 2021 年 11 月 15 日

0 投票

I think this does what you want and is nice and simple
X = [95 0;onlyPlot]
stairs(flip(X(:,2)),flip(X(:,1)),'-o')

2 件のコメント

Jon
Jon 2021 年 11 月 15 日
編集済み: Jon 2021 年 11 月 15 日
Although I guess it doesn't put the markers as you show them. I'm not sure if that is important for you or you just want the jumps as you show them. If you just want the jumps but don't need the markers can use line type '-' and not plot the markers
Vannapong Klungthong
Vannapong Klungthong 2021 年 11 月 16 日
Thanks a lot it solve my problem clearly

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

その他の回答 (0 件)

カテゴリ

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

製品

リリース

R2021a

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by