Matlab图中的x轴/ y轴线

时间:2019-02-01 15:37:44

标签: matlab matlab-figure

找不到此内容:

我想上绘制X线和Y轴总适合为100%到该图的宽度或高度。

figure; hold on;
plot(rand(1,100));
line(xlim,[.5 .5],'Color','red');
line([50 50],ylim,'Color','red');
pause(.5)
xlim([1 200]);% lines should now automatically extend

grid on这是有可能得到一个网格,秤自动,但它似乎是不可能仅限制网格到X / Y轴。想法?

bsdf

缩放后:

asdf

我更喜欢:

enter image description here

2 个答案:

答案 0 :(得分:2)

功能xlineyline 是在MATLAB R2018b中引入的,并且完全可以根据您的需要进行操作。

此外,可以在行中添加(文本)标签。

答案 1 :(得分:0)

figure;
plot([1:10]);
set(gca, 'position', [0 0  1 1]);

enter image description here