Hello I have a question about matrix

조회 수: 2 (최근 30일)
Andres  Romero
Andres Romero 2016년 9월 8일
댓글: Andres Romero 2016년 9월 8일
I need to divide a matriz, with values with NaN and values without NaN For example: A = [10 15 NaN; 10 12 NaN; 10 13 110] I wanna divide A in: B = [10 15 NaN; 10 12 NaN] C = [10 13 10]

채택된 답변

Mischa Kim
Mischa Kim 2016년 9월 8일
편집: Mischa Kim 2016년 9월 8일
Andres, use for example
B = A(any(isnan(A),2),:)
C = A(~any(isnan(A),2),:)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 NaNs에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by