필터 지우기
필터 지우기

Colorbar color range always from 0-1, even when altering limits

조회 수: 23 (최근 30일)
Ida
Ida 2015년 10월 13일
댓글: Ida 2015년 10월 14일
Hello, I have a gui in which I display a 2D image and an associated colorbar. When I change the limits of the colorbar, the color range still only goes from 0 to 1, even if I use the limits e.g. -4 to 5 (see attached image for an example). Note that the image is displayed correctly, i.e. within the right range. The colorbar is not however. In the gui, I have an empty axes object called axesColorbar.
handles.colorbar = colorbar(handles.axesColorbar);
set( handles.colorbar, 'Limits',[-1.5 4.5] );
colormap(Jet);
Does anyone know how to fix this? Thank you! Sincerely, Ida

채택된 답변

Walter Roberson
Walter Roberson 2015년 10월 13일
Changing the colorbar limits does not affect the data in the graph.
Either what is being drawn has limits 0 to 1, or else caxis is set to 0 to 1 for the axes.
  댓글 수: 1
Ida
Ida 2015년 10월 14일
Hi Walter and thanks for your reply!
Indeed, changing caxis as caxis([lowlim highlim]) did update the colorbar colors as well! thank you!

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

추가 답변 (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