Assign mean and max value to a heatmap color bar

조회 수: 25 (최근 30일)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 4월 9일
편집: Mohammad Sami 2020년 4월 9일
In order to be have consistant colorbar for all plots, how can I set a min and max to the heatmap color bar? I want to customize the min and max
The line of code I am using now is:
h = heatmap(x,y,mat,...
'ColorScaling','log','MissingDataColor','1.00,1.00,1.00','GridVisible','off','MissingDataLabel','');
colormap(flipud(colormap('summer'))); set(gca,'FontSize',14,'FontName','Arial');
thank you

채택된 답변

Mohammad Sami
Mohammad Sami 2020년 4월 9일
You can specify the color limits in your heat map
%h = heatmap(__,'ColorLimits',[0 10])
  댓글 수: 2
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2020년 4월 9일
Thanks.Tired that but did not give me reasonable ouput.
The color bar before:
and after:
I used this code:
% h = heatmap(__,'ColorLimits',[0 1])
Mohammad Sami
Mohammad Sami 2020년 4월 9일
편집: Mohammad Sami 2020년 4월 9일
This is arising from setting colorscaling to log. you may wish to omit that or specify the color limits in log scale as.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by