3D Plot Color Map Gradation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
can somebody help me to make a 3D plot color like this.
0 comentarios
Respuesta aceptada
G A
el 17 de Abr. de 2021
Try this:
cmp=colormap(turbo(256));
caxis([-0.5,0.5]);
cmp1=cmp;
cmp1(1:128,:)=flipud(cmp1(129:256,:));
colormap(cmp1);
colorbar
Más respuestas (0)
Ver también
Categorías
Más información sobre Colormaps 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!