how create an matrix without NaN data?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi users Matlab...
I have an matrix as dimensions 180x89x1919> This my matrix have some data NaN.
This is possible?
댓글 수: 5
채택된 답변
José-Luis
2014년 7월 15일
You would need to replace the NaN's with something:
your_mat(your_mat ~= your_mat) = some_value;
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Preprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!