Borrar filtros
Borrar filtros

Changing clim on previous imagesc in a subplot

8 visualizaciones (últimos 30 días)
Mason
Mason el 8 de Feb. de 2013
Hello,
I am making imagesc subplots and at the end i am finding max values within a loop.
I tried using h = imagesc() then "set(h, 'CLim', [somevalue, somevalue])" but then found out you cant use handles in this way with imagesc.
How can i change the clim values on those plots?
Thanks!

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Feb. de 2013
imagesc() does not itself create subplots. subplot() creates subplots. You need to record the output from the subplot() call and use it as the handle for the set()
thisax = subplot(2,3,5); %for example
imagesc()
set(thisax, 'CLim', [somevalue, somevalue]);

Más respuestas (1)

Mason
Mason el 8 de Feb. de 2013
ah ha! awesome, thanks! Makes total sense.

Categorías

Más información sobre Lighting, Transparency, and Shading en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by