没有轴的绘图和matlab / octave中的绑定框

时间:2014-10-08 21:47:24

标签: matlab plot octave

我下面有两个地块。如何摆脱第二个图上的轴和粘接盒? 我使用octave 3.8.1

用于创建绘图的绘图命令。

clf(figure(1))
figure (1);
plot(xfreq_orig(1:3000),yamp_orig(1:3000)); 
print ('-dpng','-S1024,768', strcat('/tmp/','01_graph.png')); %export plot to file

hold on;

clf(figure(2))
figure (2);
plot(xfreq_orig(1:3000),yamp_inv(1:3000),'r')
print ('-dpng','-S1024,768', strcat('/tmp/','02_graph.png')); %export plot

1st plot

2nd plot

1 个答案:

答案 0 :(得分:2)

它就像

一样简单
axis off

您也可以尝试

box off

只是禁用轴边界的某些部分