Remove NaN from the cell array without changing the row and column of matrix

조회 수: 10 (최근 30일)
Hi all,
I have a question related to how to remove NaN in cell array without changing any rows and column of matrix.
for example,
A = [ NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN,
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN,
NaN NaN NaN NaN 25 NaN NaN NaN NaN NaN,
NaN NaN 23 24 25 27 NaN NaN NaN NaN,
NaN 22 30 35 23 23 23 23 NaN NaN,
24 23 33 23 23 19 20 20 20 21,
NaN NaN 23 21 28 22 NaN NaN NaN NaN,
NaN NaN NaN NaN 25 NaN NaN NaN NaN NaN,
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN]
I would like to get rid of NaN but keeping the same character of matrix, such as
A = [ _ _ _ _ _ _ _ _ _ _ ,
_ _ _ _ _ _ _ _ _ _,
_ _ _ _ 25 _ _ _ _ _,
_ _ 23 24 25 27 _ _ _ _,
_ 22 30 35 23 23 23 23 _ _,
24 23 33 23 23 19 20 20 20 21,
_ _ 23 21 28 22 _ _ _ _,
_ _ _ _ 25 _ _ _ _,
_ _ _ _ _ _ _ _ _ _ ]
* _ means no any valu, even 0
How could I do that, Thanks very much in advance.
  댓글 수: 4
Pichawut Manopkawee
Pichawut Manopkawee 2016년 9월 21일
i'm sorry if I make you get confused between cell array and matrix. A is a matrix containing cell array as I show you above. Actually, the NaN is from a tiff file exported from ArcMap. I think it is a black zone without any elevation value of DEM. It makes the calculation weird even I make all NaN as zero value.
As James told me, all spots should fill a value. They still have value eventually.
Thank you so much, and I will find another way to cope with this.

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

답변 (1개)

Michelle Wu
Michelle Wu 2016년 9월 26일
It is my understanding that you are trying to remove the NaNs from a cell array since they would somehow affect the calculations you are trying to perform. However, the code snippet you provided in your initial description contradicts with your comments of A being a matrix containing cell arrays. I will assume A to be a 9-by-10 cell array according to your example, and hopefully my answer still applies to whatever kind of cell array you are actually using.
Create the 9-by-10 cell array A from an array arr:
>> arr = [NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN;
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN;
NaN NaN NaN NaN 25 NaN NaN NaN NaN NaN;
NaN NaN 23 24 25 27 NaN NaN NaN NaN;
NaN 22 30 35 23 23 23 23 NaN NaN;
24 23 33 23 23 19 20 20 20 21;
NaN NaN 23 21 28 22 NaN NaN NaN NaN;
NaN NaN NaN NaN 25 NaN NaN NaN NaN NaN;
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN];
>> A = num2cell(arr);
The cell array A would look like:
A =
[NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN]
[NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN]
[NaN] [NaN] [NaN] [NaN] [ 25] [NaN] [NaN] [NaN] [NaN] [NaN]
[NaN] [NaN] [ 23] [ 24] [ 25] [ 27] [NaN] [NaN] [NaN] [NaN]
[NaN] [ 22] [ 30] [ 35] [ 23] [ 23] [ 23] [ 23] [NaN] [NaN]
[ 24] [ 23] [ 33] [ 23] [ 23] [ 19] [ 20] [ 20] [ 20] [ 21]
[NaN] [NaN] [ 23] [ 21] [ 28] [ 22] [NaN] [NaN] [NaN] [NaN]
[NaN] [NaN] [NaN] [NaN] [ 25] [NaN] [NaN] [NaN] [NaN] [NaN]
[NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN] [NaN]
Find the NaNs in A, and replace them with []:
>> A(cellfun(@isnan,A)) = {[]};
Now A becomes:
A =
[] [] [] [] [] [] [] [] [] []
[] [] [] [] [] [] [] [] [] []
[] [] [] [] [25] [] [] [] [] []
[] [] [23] [24] [25] [27] [] [] [] []
[] [22] [30] [35] [23] [23] [23] [23] [] []
[24] [23] [33] [23] [23] [19] [20] [20] [20] [21]
[] [] [23] [21] [28] [22] [] [] [] []
[] [] [] [] [25] [] [] [] [] []
[] [] [] [] [] [] [] [] [] []
To learn more about the usage of “cellfun”, refer to the documentation page.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by