symmetric color map using surf
Mostrar comentarios más antiguos
Hi there,
I would like to show in a graph a symmetric color driving from 0 green to either + and - to red. The peak at the bottom should be in colour yellow again.
All areas around 0 in green. Anyone an Idea? Cheers

2 comentarios
KSSV
el 6 de Mzo. de 2019
Make your colormap data and try..read bout colormap
Peter Wagner
el 7 de Mzo. de 2019
Respuesta aceptada
Más respuestas (1)
Neil Lamas
el 9 de Feb. de 2022
Editada: Neil Lamas
el 9 de Feb. de 2022
Here is an alternative using the color libraries from matlab:
cmap_pos = jet(64);
cmap_neg = flipud(cmap_pos);
cmap = [cmap_neg; cmap_pos];
surf(peaks)
colormap(cmap)
colorbar
Categorías
Más información sobre Blue en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

