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

13 visualizzazioni (ultimi 30 giorni)

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]).

Risposta accettata

MathWorks Support Team
MathWorks Support Team il 14 Nov 2024 alle 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 Commento
Walter Roberson
Walter Roberson il 14 Nov 2024 alle 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>

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Numeric Types in Help Center e File Exchange

Prodotti


Release

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by