Extract from lines from matrix that do not contain NaN

2 views (last 30 days)
Hi
I'm trying to ignore NAN from my matrix A and only use the lines that contain numbers. For expamle if my matrix is:
A = [0.02, 1.28, 0.22; 0.01, 0.64, 0.12; 0, NaN, NaN; 0, NaN, 0.05; 0, NaN, NaN];
Here I would only like to extract the following data from the matrix A:
A_extract = [0.02, 1.28, 0.22; 0.01, 0.64, 0.12];
Is it possible to do a general solution for this problem?

Accepted Answer

Matt J
Matt J on 11 Oct 2012
A_extract=A(~any(isnan(A),2),:)

More Answers (0)

Community Treasure Hunt

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

Start Hunting!