Yaxis becomes periodic after using ylim

조회 수: 7 (최근 30일)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 8월 6일
편집: Walter Roberson 2020년 8월 6일
Here is the y axis without using ylim:
and here is the yaxis after using ylim([50 100])
why it looks weird? how can I fix the issue?

채택된 답변

Walter Roberson
Walter Roberson 2020년 8월 6일
I predict that you have either used yyaxis or xxaxis, or else that you have use the older plotyy(), or else that you called axes() more than once with overlapping Position. In such cases, you would have multiple axes in the same location. However, your ylim() call is only affecting one of the axes, so it is getting out of synchronization for labels with the other.
This kind of problem was more likely to happen with plotyy() or calling axes() multiple times.. yyaxis() and xxaxis() are more careful to put the tick labels on opposite side of the graph.
  댓글 수: 2
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 8월 6일
I was using hold on with scatter and it was overlapping. I added ylim manual and resolved. Thanks for the hint.
Walter Roberson
Walter Roberson 2020년 8월 6일
편집: Walter Roberson 2020년 8월 6일
I do not think you can get that particular error unless you have overlapping axes, which you would not get with "hold on"

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

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