scaling and change the ylim for subplot

조회 수: 34 (최근 30일)
Ravindra
Ravindra 2020년 9월 7일
편집: Abdolkarim Mohammadi 2020년 9월 7일
I plotted a figure with two y-axis with different y limit
But I would like to limit the yyaxis of the right axis so that right axis starts with the lower limit of the left plot and upper limit of the right plot?
Or if it is possible that the zero-axis of both plots matches?
I manually shifted the right plotted axis so that the zeros matches for both axis.
Thank you very much for your inputs!!

채택된 답변

Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 9월 7일
편집: Abdolkarim Mohammadi 2020년 9월 7일
You should set ylim() for each axes separately. For example:
x = linspace (0, 6, 51)';
y1 = sin (x);
y2 = cos (x);
yyaxis ('left');
plot (x,y1);
ylim ([-2,2]);
yyaxis ('right');
plot (x,y2);
ylim ([-6,6]);
  댓글 수: 4
Ravindra
Ravindra 2020년 9월 7일
편집: Ravindra 2020년 9월 7일
Thanks!!!
So every time I need to modify the ylim manually so that it passes with the left side axis. Is it possible to do it automatically?
Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 9월 7일
편집: Abdolkarim Mohammadi 2020년 9월 7일
ylim() only affects the current axis. When the command yyaxis(AA,'right') is executed, all of the future commands (including ylim()) affect the right yyaxis. You have to do this manually because the scale of your data for the left yyaxis and the right yyaxis differs significantly. The left yyaxis and the right yyaxis are separate and the ruler scale in one side does not affect the one on the other side.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by