我有一个有几个子图的图。我正在尝试在打印时添加标题。我可以从打印预览中做到这一点,但我想对其进行编程,因为我的代码有很多数字。
figure('numbertitle','off','name','This is my window title',...
'PaperOrientation','landscape','PaperPosition',[0.25,0.25,10.5,7])
subplot(2,2,1)
plot(1:10)
title('Example subplot1')
subplot(2,2,2)
plot(10:20)
title('Example subplot2')
subplot(2,2,3)
plot(20:30)
title('Example subplot3')
subplot(2,2,4)
plot(30:40)
title('Example subplot4')
我找到了这个,但它似乎不起作用,我也不完全理解那里发生了什么。任何帮助是极大的赞赏。