Use complex nan by default when interpolating out of bounds #6019
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
pre-commit run --all-fileswhats-new.rstWhen using the
da.interpto interpolate outside of the bounds, by default,fill_valueis set tonp.nanto set the values to NaN.This is completely fine with real values, but with complex values this will in fact set the values to
np.nan + 0jwhich can be a source of confusion and bugs.This PR propose to detect if values are complex, and if so, to use
np.nan + np.nan*1jas the defaultfill_value