Hello I have a question about matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
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]
댓글 수: 0
채택된 답변
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 Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!