Specify the path of X and Y axis (MATLAB)
조회 수: 2 (최근 30일)
이전 댓글 표시
Dear members,
When I tried to plot this figure, the axes are not the same. X axis start from 0 to 1 with path of 0.1 and that's what I want for Y axis that starts directly with 0.6. I want to change the Y axis as in the case of X one.
How can I do that please.
댓글 수: 0
답변 (1개)
Scott MacKenzie
2021년 10월 23일
After your plot command, add
set(gca, 'xlim', [0 1], 'ylim', [0 1]);
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!