Plotting leaving empty space before line begins
조회 수: 10 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/616953/image.png)
So this plot has a gap before the beginning of the line. I have checked the arrays being inputted and they have the correct values and therefore there should be no gap.
My current theory is based on the bottom and that when the program plots the points it is rounding the axis numbers and therefore not centering the graph at the start of the line.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/616958/image.png)
Any ideas on how to fix this?
댓글 수: 0
채택된 답변
Cris LaPierre
2021년 5월 13일
편집: Cris LaPierre
2021년 5월 13일
Yes, by default MATLAB will attempt to set the ticks at round numbers. If you prefer to have the limits exactly match your data, use axis tight
x = rand(1,5);
y = rand(1,5);
tiledlayout(1,2)
nexttile
plot(x,y)
title('Normal')
nexttile
plot(x,y)
title('axis tight')
axis tight
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!