Fillmissing: Change missing value definition?
이전 댓글 표시
Hello, Is there a way to change/customize the "missing value" definition in the "fillmissing" function? In other words, I'd like to my missing numeric values to be defined as "0", and not as NaNs. I see that "ismissing" has a provision to specify the indicator, but I don't know if this can be used with "fillmissing".
I ask because I have a geospatial dataset I'm working with where I've masked the oceans as NaNs, and I need to fill land gridcells along the coasts which are currently specified as "0". I'd like to fill these coastal land values with the nearest neighbor approach. As such, I don't want to convert the ocean gridcells to numbers, as they erroneously might be used as part of this approach to fill my coastal cells.
The fillmissing capability would be perfect if I could specify the value to be replaced! Any ideas would be helpful.
Thanks
댓글 수: 1
Greg Dionne
2018년 9월 24일
Let us know if you've tried the following syntax:
fillmissing(...,'constant',0)
답변 (2개)
Sean de Wolski
2018년 7월 26일
편집: Sean de Wolski
2018년 7월 26일
0 개 추천
Do a standardizeMissing first to convert your 0s to NaNs, then fill missing.
카테고리
도움말 센터 및 File Exchange에서 Oceanography and Hydrology에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!