How can I remove all rows from a matrix which contain NaN values?

13 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2024 年 11 月 14 日 0:00
コメント済み: Walter Roberson 2024 年 11 月 14 日 6:01

How can I remove all rows from a matrix which contain NaN values?

For example:

>> A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];

In matrix A defined above, I would like to remove row 2 ([4, NaN, 6]).

採用された回答

MathWorks Support Team
MathWorks Support Team 2024 年 11 月 14 日 0:00
Use the following code to remove all rows which contain NaN values from a matrix A:
>> A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];
>> A = A(~any(isnan(A), 2), :);
  1 件のコメント
Walter Roberson
Walter Roberson 2024 年 11 月 14 日 6:01
A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];
A = rmmissing(A)
A = 2×3
1 2 3 7 8 9
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumeric Types についてさらに検索

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by