How can I remove all rows from a matrix which contain NaN values?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 14 de Nov. de 2024 a las 0:00
Comentada: Walter Roberson
el 14 de Nov. de 2024 a las 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]).
Respuesta aceptada
MathWorks Support Team
el 14 de Nov. de 2024 a las 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 comentario
Walter Roberson
el 14 de Nov. de 2024 a las 6:01
A = [1, 2, 3; 4, NaN, 6; 7, 8, 9];
A = rmmissing(A)
Más respuestas (0)
Ver también
Categorías
Más información sobre Numeric Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!