matlab绘图充满图窗
通常以下命令能满足要求:
set(gca,'LooseInset', get(gca,'TightInset'))
但有时上述命令会覆盖一些元素,此时手动控制边距:
宽度方向空白区域0.03, 高度方向空白区域0.05
set(gca,'looseInset',[0 0 0.03 0.05]);
    快去成为你想要的样子!
通常以下命令能满足要求:
set(gca,'LooseInset', get(gca,'TightInset'))
但有时上述命令会覆盖一些元素,此时手动控制边距:
宽度方向空白区域0.03, 高度方向空白区域0.05
set(gca,'looseInset',[0 0 0.03 0.05]);
