How can I zoom in on the scatter plot? (Classification Learner)
조회 수: 2 (최근 30일)
이전 댓글 표시
How can I zoom in on the scatter plot? (Classification Learner)
답변 (1개)
Varun Garg
2018년 6월 4일
Hi SungMi
I understand from your question that you have a graph which you want to zoom in on for probably better view of the points manually. MATLAB enables you this functionality via
zoom
Example snippet
x=[1,2,3,4,5];
y=[1000,2000,3000,4000,5000];
plot(x,y)
zoom on
This will enable you to manually scroll on the figure so you can zoom in/ zoom out. Hope this answers your question. You can find the related documentation here .
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Exploration에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!