MATLAB: How to keep the numbers on the colorbar scale of a surface plot fixed

colorcolormapsurfsurface

Following are my two surface plots (top view). Right now the first graph has colorbar scale from -40 to 40 while the second from -40 to 120. I want the colorbar axes to show the same scale in both, i.e., -40 to 120. Can someone please help? Thanks.

Best Answer

Set
caxis([-40 120])
after both plots.