Watch this Author's files
Hi, I'm trying to plot in the same figure (not in different subplot of thesame image) two different data with different colorbar, but if I use freezeColor it doesen't work....
[X,Y]=meshgrid(-10:10,-20:20); Z1=sqrt((X/10).^2+(Y/10).^2)+2; Z2=sqrt((X/10).^2+(Y/10).^2)-2;
figure,contour3(X,Y,Z1); axis xy; colormap hsv; freezeColors; freezeColors(colorbar); hold on;contour3(X,Y,Z2); axis xy; colormap jet; freezeColors; freezeColors(colorbar);
is it possible to have both the colorbars, one for each data?
Thaks
Contact us at files@mathworks.com