How can I change only one color in my colormap?

3 views (last 30 days)
I plot a 3dimensional temperature distribution via interpn in the whole space. so the data that are not defined by my input data appear as zero. to put them as NaN does not work for the programm to run. So i want to change the color for c=0 to white so it doesnt disturb the view. how can I do that?

Accepted Answer

Image Analyst
Image Analyst on 11 Jun 2015
Assuming the 0 value is the first row of your color map:
yourColorMap(1, :) = [1,1,1];
  3 Comments
Image Analyst
Image Analyst on 11 Jun 2015
Yes.
yourColorMap = jet(256);
yourColorMap(1, :) = [1,1,1];
colormap(yourColorMap);
colorbar;

Sign in to comment.

More Answers (0)

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!