matlab中如何隐藏figure的边框和标题栏?

2024-12-24 23:02:28
推荐回答(2个)
回答1:

  在matlab的help中,搜索"Automatic Axes Resize",就可以看到调节坐标的几个属性。假设随机生成一张图片100*100,然后保存为png格式,且DPI=300。

imagesc(rand(100,100)); % generate a random image
axis off % set off the axis
set(gca, 'position', [0 0 1 1 ]); % the axis must be normalized
print('-f1', '-r300', '-dpng','xxx.png'); % set the DPI

回答2:

如果你是想把图像存起来放到论文里用的话,有一小招,你只要选择另存为.jpg就OK了。