clim in pcolor plot
59 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have a pcolor plot that I want to set the color limits on. My code is
pcolor(X,Y,f(data))
shading interp
but if i add a third line
clim([0,1])
then I get an "??? Undefined function or method 'clim' for input arguments of type 'double'." error.
Any suggestions?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Ben Mitch
el 25 de Mayo de 2011
are you perhaps looking for...?
set(gca, 'clim', [0 1]);
0 comentarios
Ver también
Categorías
Más información sobre Lighting, Transparency, and Shading 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!