how can i remove a part from stairs graph ?

조회 수: 3 (최근 30일)
ADNAN KIRAL
ADNAN KIRAL 2020년 11월 17일
댓글: ADNAN KIRAL 2020년 11월 17일
Hi,
I want to remove a part from the plot . How can i do that ?
or can i have such shape without drawn part ? any command from matlab ?
thanks in advance
this is the script
a=[0;1; 2; 3];
b=[0; 2.7;5.2;4.5];
figure
stairs(b, a, 'LineWidth',2)
grid on

채택된 답변

Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 17일
편집: Setsuna Yuuki. 2020년 11월 17일
With the xlim() and ylim() command you can see from 2.7 to 6
a=[0;1; 2; 3];
b=[0;2.7;5.2;4.5];
figure
stairs(b, a, 'LineWidth',2)
xlim([2.7 6])
ylim([0 3])
grid on
  댓글 수: 3
Setsuna Yuuki.
Setsuna Yuuki. 2020년 11월 17일
편집: Setsuna Yuuki. 2020년 11월 17일
if you change this:
a=[0;1; 2; 3];
b=[2.7;2.7;5.2;4.5]; %firt number 0-->2.7
figure
stairs(b, a, 'LineWidth',2)
grid on
ADNAN KIRAL
ADNAN KIRAL 2020년 11월 17일
many thanks.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by