How do you zoom in on a graph rather than on the map/axes?

조회 수: 2 (최근 30일)
Bella Finkel
Bella Finkel 2015년 12월 29일
댓글: Bella Finkel 2015년 12월 29일
I'm trying to make a graph larger, but using the magnifying glass zoom icon just changes the size of the axes, rather than making the graph itself larger and easier to read. Is there a command or procedure that can be used to zoom in on the graph so that it becomes bigger and clearer?

답변 (1개)

Image Analyst
Image Analyst 2015년 12월 29일
Maybe just make things bigger in the first place.
When you draw the graph, xlabel(), ylabel(), and title() have 'FontSize' properties.
xlabel('This is the X axis', 'FontSize', 20);
In addition, plot() has 'LineWidth' and 'MarkerSize' properties.
plot(x, y, 'FontSize', 20, 'MarkerSize', 18);
The axes also have properties for the size, font, and angle of the tick marks.
  댓글 수: 1
Bella Finkel
Bella Finkel 2015년 12월 29일
I'm not having trouble with the label size, I'm having trouble with the size of my graphed data relative to the size of the graph. However, the size of the tick marks might help. What is the command for that?

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

카테고리

Help CenterFile Exchange에서 Data Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by