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 Exchange에서 MATLAB에 대해 자세히 알아보기

제품

릴리스

R2021a

태그

질문:

2021년 11월 15일

댓글:

2021년 11월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by