Formatting the JET colormap

조회 수: 19 (최근 30일)
Hans123
Hans123 2020년 6월 23일
편집: Stephen23 2020년 6월 23일
I am familiar with colormapeditor but every time I type it in the command window, after setting colormap to jet, I edit the parula colormap.
Even after editing the parula in the command window it refreshes back to normal after running a loop.
I hope to resolve this issue, I want the jet colormap but for values that are 0 (the midpoint of my colorbar), the color should be white/or a light color as shown below, the rest of the color map should be unchanged. Appreciate any help regarding this question.

채택된 답변

Stephen23
Stephen23 2020년 6월 23일
편집: Stephen23 2020년 6월 23일
The colormapeditor changes the colormap of the current figure. It does not save or store the colormap in any way.
You will most likely have to follow a workflow something like this:
figure() % open a figure, or even better plot an image or something similar
colormap(somecolormap) % change to somecolormap
colormapeditor() % adjust the colors until you are happy
Once you are happy with the colormap continue by storing the colormap:
map = colormap(); % store colormap in an array
and then inside the loop use map to set the figure/axes colormap as required:
for ...
fgh = figure();
...
colormap(fgh,map)
end
  댓글 수: 2
Hans123
Hans123 2020년 6월 23일
편집: Hans123 2020년 6월 23일
Thanks for the reply, Stephen. the colormapeditor() function - how can you write a line of code to make sure the midpoint of jet is white? In the command window a GUI opens up and you change it.
figure
colormap(jet)
colormapeditor(...)
map = colormap(...);
Stephen23
Stephen23 2020년 6월 23일
편집: Stephen23 2020년 6월 23일
"how can you write a line of code to make sure the midpoint of jet is white?"
The line colormapeditor() does not set any color values, it just opens the GUI. After doing the required adjustments, you can continue with the rest of the code.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Orange에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by