Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试在 Matlab 中生成一个 14 x 5 的子图,但是子图具有方轴,因此在显示时子图不清晰。同样,当我将结果绘制为 pdf 时,子图太小而无法阅读。我怎样才能防止这个问题?
如果您不希望您的子图在打印为 pdf 时被挤压,您可以增加打印它们的“纸张”的大小。打印前执行以下代码:
set(gcf, 'PaperUnits', 'inches'); set(gcf, 'PaperSize', [12 12]);
尝试使用
set(gcf,'PaperPositionMode','auto')
“这确保了印刷版的尺寸与屏幕上的版本相同。” (来自 Matlab 帮助打印)