Changing Scale on Plotyy

조회 수: 3 (최근 30일)
T
T 2013년 8월 27일
Suppose you want to use plotyy,
one function ranges from [0,1], the other function ranges from [-1,10000]
Suppose that in the section function, it's minimum value is say -.67, when you plot them together, the second function appears above the first one due to the range, suppose I want to bring it down, how would I do this?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 8월 27일
편집: Azzi Abdelmalek 2013년 8월 27일
[ax,h1,h2]=plotyy(x1,y1,x2,y2)
use the handle ax(1) to change the first axis and ax(2) to change the second one
For example
set(ax(2),'ylim',[ymin ymax])
  댓글 수: 3
Azzi Abdelmalek
Azzi Abdelmalek 2013년 8월 27일
편집: Azzi Abdelmalek 2013년 8월 27일
You can control your scale
set(ax(2),'ylim',[min(y2) max(y2)])
T
T 2013년 9월 11일
What if I only want to specify the minimum and leave the maximum alone? Specifying the max, tapers off the graph and I want some space above the function to display.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Two y-axis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by