How to position the y axis on the right in a plot

조회 수: 19 (최근 30일)
Imam
Imam 2016년 1월 28일
댓글: Ingrid 2016년 1월 29일
I have two vectors f(t) and g(t) and I want to plot them in one graph using plotyy. But I also want to do some other things like changing the marker style of each curve and also changing the span of the axes. I have tried using xlim but it only affects one of the x axes, not both.

채택된 답변

Ingrid
Ingrid 2016년 1월 28일
you need to use the handles for this so
[hAx,hLine1,hLine2] = plotyy(x,y1,x,y2);
xlim(hAx(1),...)
xlim(hAx(2),...)
this is also very well explained in the documentation of plotyy
doc plotyy
  댓글 수: 4
Imam
Imam 2016년 1월 29일
Another question please, I also want my plot to be of only marker-defined, meaning the data points are marked with certain marker type without connecting line. I have added
set(hLine1,'Marker','o','MarkerSize',10)
The marker appears as desired but the connecting line between data points still exist. How can I remove the line?
Ingrid
Ingrid 2016년 1월 29일
set(hLine1,'LineStyle','none')
this is clearly explained in the documentation of plot

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

추가 답변 (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