Scalling Y-Axis
조회 수: 2 (최근 30일)
이전 댓글 표시
I have 3 matrices with similar values (m1_iter, m2_iter, m13_iter) the difference is on 2,3,4,5 digits behind the comma. I want to change the y axis so I can see the gap between 3 graph.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1106935/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1106940/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1106945/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1106950/image.png)
댓글 수: 0
답변 (2개)
Cris LaPierre
2022년 8월 24일
I would plot the difference between m1_iter & m2_iter, m1_iter & m13_iter, and m2_iter & m13_iter.
댓글 수: 3
Cris LaPierre
2022년 8월 24일
That is why I am suggesting you just plot the difference.
If your line were flatter, you might be able to play with the scale of the yaxis to increase the visual separation between the lines, but given the slope of your line, you cannot both adjust the scale and still see all the data without actually modifying the y values.
vamshi sai yele
2022년 8월 27일
Hi Aldo,
As per my understanding you want to figure out the gap between two lines.
Zooming into the graph, which means reducing the axis boundaries and increasing the number of intervals, will allow us to see between two graph lines more clearly.
We can make advantage of the "axis" property to define the axis bounds. The code for this case is shown in more detail below:
x = linspace(0,10);
y = x.^2;
k = y+1
plot(x,y)
hold on
plot(x,k)
hold off
If we execute the above code, we can see two lines plotting on the graph with limits from 1-10 on x-axis and with 0-100 on y-axis, but the gap between two lines is very narrow.
To zoom the y-axis and to amplify the gap between two lines, set the axis property as shown below.
x = linspace(0,10);
y = x.^2;
k = y+1;
plot(x,y);
hold on
plot(x,k)
hold off
Axis([0 10 0 10])
Here, I would like to mention that it is preferable to scale the x-axis as well in order to have a clear impression of the gap between two lines. The optimum outcome is obtained by scaling both axes appropriately.
Try the code below, where we have adjusted the x-axis as well for obvious effects.
x = linspace(0,10);
y = x.^2;
k = y+1
plot(x,y)
hold on
plot(x,k)
hold off
Axis([0 2 0 10])
Hope the answer was helpful!!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Performance에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!