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 comentario

Let us know if you've tried the following syntax:
fillmissing(...,'constant',0)

Iniciar sesión para comentar.

Respuestas (2)

Sean de Wolski
Sean de Wolski el 26 de Jul. de 2018
Editada: Sean de Wolski el 26 de Jul. de 2018

0 votos

Do a standardizeMissing first to convert your 0s to NaNs, then fill missing.
mcd
mcd el 26 de Jul. de 2018

0 votos

Thanks! I'll use this and then just reapply my ocean mask afterwards.

Categorías

Más información sobre Oceanography and Hydrology en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

mcd
el 26 de Jul. de 2018

Comentada:

el 24 de Sept. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by