How to change my color map
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nurul Ain Basirah Zakaria
el 9 de Nov. de 2020
Comentada: Ameer Hamza
el 9 de Nov. de 2020
Hi. How to change my colormap?
I want to reverse the color, -2 should be the orange one. Can anyone teach me how to do it. I've google but I dont really get it.
0 comentarios
Respuesta aceptada
Ameer Hamza
el 9 de Nov. de 2020
You can flip the colormap
ax = axes();
% create the figure
pcolor(..);
ax.Colormap = flipud(ax.Colormap) % reverse the colormap
2 comentarios
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!