Import figure with subplots

2 visualizaciones (últimos 30 días)
Chiara Modenese
Chiara Modenese el 28 de Mzo. de 2011
Hi there,
simple question. I want to import a figure which is made of a number of subplots and does something with it. How to handle that? I mean, how to access each single subplot and modify something in a loop, for instance?
Cheers. C

Respuesta aceptada

Jan
Jan el 28 de Mzo. de 2011
FigH = hgload(FigFileName);
% EDITED: 'flat' without leading '-'
AxesList = findobj(get(FigH, 'Children'), 'flat', 'Type', 'axes');
% If there are additional AXES objects in the figure,
% which are no SubPlot's use an additional property
% to exclude/include them in the FINDOBJ command.
for aAxes = reshape(AxesList, 1, [])
set(aAxes, 'Color', rand(1, 3));
end

Más respuestas (1)

Chiara Modenese
Chiara Modenese el 28 de Mzo. de 2011
Thank you. The option '-flat' worked without the minus for me. Cheers, C.
  3 comentarios
Jan
Jan el 28 de Mzo. de 2011
Which label do you mean? XTick labels, X-/Y-labels, titles, or do you have text labels inside the plots?
Chiara Modenese
Chiara Modenese el 28 de Mzo. de 2011
Sorry, I should have specified that. I meant the text labels inside the plots. Thanks, Chiara

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by