symmetric color map using surf
Show older comments
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 Comments
KSSV
on 6 Mar 2019
Make your colormap data and try..read bout colormap
Peter Wagner
on 7 Mar 2019
Accepted Answer
More Answers (1)
Neil Lamas
on 9 Feb 2022
Edited: Neil Lamas
on 9 Feb 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
Categories
Find more on Blue in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
