MATLAB: Clim in pcolor plot

pcolor

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?

Best Answer

The axes property is called CLim. The convenience function which modifies it is called caxis.
Related Question