当前位置:  开发笔记 > 编程语言 > 正文

使用逻辑数组索引到矩阵

如何解决《使用逻辑数组索引到矩阵》经验,为你挑选了1个好方法。



1> Adriaan..:

使用

A = magic(4);A(3,3)=nan;
threshold=1;

for ii = 1:size(A,1) % loop over rows
    if sum(isnan(A(ii,:)))>=threshold % get the nans, sum the occurances
        A(ii,:)=nan(1,size(A,2)); % fill the row with column width amount of nans
    end
end

结果是

A =

    16     2     3    13
     5    11    10     8
   NaN   NaN   NaN   NaN
     4    14    15     1

或者,正如@Obchardon在评论中提到的那样,你可以进行矢量化:

A(sum(isnan(A),2)>=threshold,:) = NaN

A =

    16     2     3    13
     5    11    10     8
   NaN   NaN   NaN   NaN
     4    14    15     1

作为旁注,您可以轻松地将其更改为列,只需为其他维度执行所有索引:

A(:,sum(isnan(A),1)>=threshold) = NaN;

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有