How to edit the grid size in heatmap and how to make the color scale just a binary value?
이전 댓글 표시
I have a heat map as shown below. I want to make it look as continous plot as possible, or in other words I want to make it appear without individual grid borders. Also, is it possible to make a binary color seelection like red(high) and yellow(low). My data has a few inf values.Also, is there any way to remove the numbering from the x and y axis in the heatmap figure?
h = heatmap(C);
colormap cool
% h.Colormap = cool;
h.ColorScaling = 'scaled';
h.ColorLimits = [0 10000];
h.GridVisible = 'off';
h.MissingDataColor = [0.8 0.8 0.8];
h.Title = 'Phase matrixs';
h.XLabel = '';
h.YLabel = '';
% caxis(h,[0 1]);

채택된 답변
추가 답변 (1개)
Image Analyst
2020년 1월 6일
Why not use imshow()?
C = 1000 * rand(100); % Create sample data.
C(10, 20) = inf; % Put an inf in there, like the poster has.
imshow(C, [0, 1000], 'InitialMagnification', 800); % Display the image.
colormap(cool(256)); % Apply the colormap.
handleToColorBar = colorbar % Display the colorbar.
% Turn off tick marks so that the colorbar won't have the numbers next to it.
handleToColorBar.Ticks = [];
I'm not sure what you mean by "binary color seelection like red(high) and yellow(low)". Does that mean that you only want two colors in there, not a gradient? If so, which value is the cutover value from red to yellow?
댓글 수: 3
Jay Vaidya
2020년 1월 6일
Image Analyst
2020년 1월 6일
편집: Image Analyst
2020년 1월 6일
What are you doing to get C? The matrix in the workbook has some weird pattern where some pixels are 0 and others are 65535, and the "real" data is in some pattern. Doing this got rid of some bad rows and columns:
data = xlsread('C20.xlsx');
data(:, 1:4:end) = [];
data(4:4:end, :) = [];
Jay Vaidya
2020년 1월 6일
카테고리
도움말 센터 및 File Exchange에서 Color and Styling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


