Plots with stairs and inclines?

조회 수: 2 (최근 30일)
Thanos Maravel
Thanos Maravel 2017년 4월 24일
댓글: Thanos Maravel 2017년 4월 24일
Assume I need to create a plot including both gentle slides and abrupt steps, such as the attached plot (note the step-like drop at vertical 2 versus the incremental slope of vertical 2-3).
To my understanding, plot() only produces the latter, while stairs() the former. How can I produce both, aside from piecing it together using several 'identical but distinct' lines on the same figure (not optimal).

채택된 답변

Andrew Newell
Andrew Newell 2017년 4월 24일
I'm not sure how you intend to generate the points, but for the example plot you gave, plot works just fine with an appropriate input:
x = [0:2 2:5];
y = [0 1 2 1 -1 0 0];
plot(x,y)
axis([0 5 -3 3])
  댓글 수: 1
Thanos Maravel
Thanos Maravel 2017년 4월 24일
This works neatly! I had tried to assign them via formulas and use of 'for' since I was gonna multiply and sum a pair later, and their 'steps' were different, but with a little doing I figured I could give them the same steps. Thanks bunches!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by