How do I add a second y axis scale and label to a graph?

조회 수: 2 (최근 30일)
Adam Kirkpatrick
Adam Kirkpatrick 2016년 4월 22일
댓글: Adam Kirkpatrick 2016년 4월 25일
I've been using Matlab to solve ODE's however I need to have a second y axis scale and label for my graphs. I've tried the whole hold on box off method and I can't get it to work.
An example of my feeder code is:
[t, y] = ode45('TEST,[0 10], [0 0 0 0]);
plot(t,y) xlabel('Time (s)'); ylabel('Concentration'); axis([0 10 0 50]); set(gca,'XTick',(0:1:10)); set(gca,'YTick',(0:5:50));
I just need a scale on the right y axis and a label.
Thanks in advance

답변 (1개)

Adam
Adam 2016년 4월 22일
편집: Adam 2016년 4월 22일
doc plotyy
should help. I've never used it myself, but I think it does what you are asking. Alternatively:
doc yyaxis
if you are using R2016a.
  댓글 수: 1
Adam Kirkpatrick
Adam Kirkpatrick 2016년 4월 25일
I only have access to matlab 2015. I can't really use plotyy because I'm plotting multiple ODEs.

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

카테고리

Help CenterFile Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by