How to print multiple figures into same pdf?
조회 수: 3(최근 30일)
표시 이전 댓글
How can i print multiple figures in one pdf file without using Ghostscript . i tried of using .ps format and it's working.
How can i convert from .ps to PDF within MATLAB.
댓글 수: 0
답변(1개)
Richard Quist
2021년 12월 6일
In R2021b and later you can use exportgraphics to directly create PDF files containing multiple figures:
% append each of the figures to output.pdf
for i=1:numFigs
exportgraphics(figure(i), 'output.pdf', 'Append', true);
end
댓글 수: 0
참고 항목
범주
Find more on Printing and Saving in Help Center and File Exchange
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!