How to print multiple figures into same pdf?

6 visualizaciones (últimos 30 días)
sridhar reddy bysani
sridhar reddy bysani el 30 de En. de 2020
Respondida: Richard Quist el 6 de Dic. de 2021
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.

Respuestas (1)

Richard Quist
Richard Quist el 6 de Dic. de 2021
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

Categorías

Más información sobre Printing and Saving en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by