如何排除 MatLab 表中的空行



我有一个矩阵,其中包含 m 行和 n 列,其中p(p<m)为空。

如何排除这些空行?

听任

 6     6     2
 6     2     2
 4     5     4
 1     2     3
 1     6     3
 2     3     5
 0     0     0  
 0     0     0

矩阵。因此,我需要排除最后两行。

谢谢你的帮助。

您可以按

如下方式使用any

A = A(any(A,2),:);
% any(A,2) gives the logical indices of the rows whose at least one element is non-zero

相关内容

  • 没有找到相关文章

最新更新