Replace -99 with NaN
조회 수: 1 (최근 30일)
이전 댓글 표시
How do I repalce -99 values with NaN?
댓글 수: 0
답변 (3개)
Steven Lord
2020년 1월 21일
Consider using the standardizeMissing function. The first example on that documentation page does exactly what you described.
댓글 수: 0
VBBV
2022년 2월 27일
편집: VBBV
2022년 2월 27일
Data = load('precip.txt'); % use load function
Data(Data == -99) = NaN
Use load function instead of readtable and try with commented line, in your snapshot code
댓글 수: 1
Stephen23
2022년 2월 27일
Use READMATRIX instead of LOAD.
That fact that LOAD imports a limited set of text files is really for compatilbilty with ancient MATLAB versions.
참고 항목
카테고리
Help Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!