Colorbar With Wrong Graphs

조회 수: 2 (최근 30일)
Peter Sakkos
Peter Sakkos 2021년 5월 1일
편집: Peter Sakkos 2021년 5월 1일
I have a function that, when executed, creates two plots, both of which have different colormaps and colorplots. When I run my code, the first figure gets printed first, correctly, with the right color scheme and color bar shown. Then, when the 2nd figure shows, the first figure shows what is supposed to be the second color bar. The second figure also shows some random color bar. How can I pin each color to a specific figure so that this switching/ flip-flopping doesn't happen?
  댓글 수: 2
DGM
DGM 2021년 5월 1일
편집: DGM 2021년 5월 1일
Consider including a sample of your code so that others can troubleshoot it.
Peter Sakkos
Peter Sakkos 2021년 5월 1일
편집: Peter Sakkos 2021년 5월 1일
My actual code is fairly long due to all of the plotting features I have.
It basically goes as follows. When it runs, colorbar "s" goes to figure 1 and the default colorbar goes to figure 2:
figure(1)
plot(...)
cm_P = colormap(summer(length(psi)));
p = colorbar;
...
figure(2)
plot(...)
cm_T = colormap(winter(length(psi)));
s = colorbar;

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

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by