How can I display all 'NaN' values as black in my image to differentiate them from lowest values?

26 次查看(过去 30 天)
I am using imagesc to display matrices. Some of them are 'NaN' values, and I want those to be black in the display so that I can distinguish the 'NaN' values from the lowest values.

采纳的回答

MathWorks Support Team
This can be done by writing code that will check for the NaN values in the image matrix and set it black. For example, create a 5X5 matrix 'a' containing some NaN values and some '0' values. Get minimum and maximum values of that matrix and also location of all 'NaN' values. Then replace all NaN with values which are less than minimum number present in that matrix. Then redraw the colormap and plot the image.
a =[
0 0.8843 NaN 0.3900 NaN
NaN 0.5880 0.8256 0.1117 0.4950
0.8620 0.1548 NaN 0.1363 0.7476
NaN 0.8999 0.3185 0.6787 NaN
0.5144 0 0.5341 0.4952 0.8507
];
minv = min(min(a));
maxv = max(max(a));
a(isnan(a)) = minv-((maxv-minv)/5);
ddd=[0 0 0;jet(10)];
colormap(ddd);
imagesc(a)
  1 个评论
Nitin Khola
Nitin Khola 2016-6-13
编辑:MathWorks Support Team 2021-4-19
Hi Tord,
The behavior of NaN values in "imagesc" is not defined currently as described in the following documentation: https://www.mathworks.com/help/matlab/ref/imagesc.html#input_argument_c
So that we can work around this behavior for colorbar and data cursor, it will require changing the ticklabels for the former and programming the callback (as per the position of the mouse pointer e.g. if on a NAN tile, display "NaN") for latter. Please refer to the following documentation which can help you implement this behavior:
Cheers!
Nitin

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Red 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by