How can I remove all rows from a matrix which contain NaN values?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
MathWorks Support Team
am 14 Nov. 2024
Kommentiert: Walter Roberson
am 14 Nov. 2024
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]).
Akzeptierte Antwort
MathWorks Support Team
am 14 Nov. 2024
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 Kommentar
Walter Roberson
am 14 Nov. 2024
A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];
A = rmmissing(A)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numeric Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!