Borrar filtros
Borrar filtros

how to make changes on open figures?

2 visualizaciones (últimos 30 días)
Mohammad
Mohammad el 24 de En. de 2014
Respondida: Walter Roberson el 24 de En. de 2014
I'm writing a code,that should make some changes on all of the open figures and then save them in png format with the same name. There are sometimes one, and sometimes more than figur open. Does anybody have an idea how I should do that?

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de En. de 2014
fignums = findobj(0, 'type', 'figure');
for thisfig = fignums
set(thisfig, 'Papersize', [8.5 11]); %for example
end

Más respuestas (0)

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by