MATLAB draws the Colorcube of the fifteenth-order colorful map combination

[X,Y] = meshgrid(-10:1:10);
Z = X + Y;
surf(X,Y,Z);
c = colorcube(15);
colormap(c);
colormap default

insert image description here

colormap parula

insert image description here

colormap turbo

insert image description here

colormap jet

insert image description here

colormap hsv

insert image description here

colormap cool

insert image description here

colormap spring

insert image description here

colormap summer

insert image description here

colormap autumn

insert image description here

colormap winter

insert image description here

colormap gray

insert image description here

colormap bone

insert image description here

colormap copper

insert image description here

colormap pink

insert image description here

colormap lines

insert image description here

colormap colorcube

insert image description here

colormap prism

insert image description here

colormap flag

insert image description here

colormap white

insert image description here

colormap default

insert image description here
References: https://ww2.mathworks.cn/help/matlab/ref/colorcube.htmlDevelopment
tools: MATLAB 2022b
WeChat screenshot tool Alt+A

Guess you like

Origin blog.csdn.net/m0_38127487/article/details/131778743