We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xrft.pad
pad_width=0
If I call
da.sizes # {'x': 32} xrft.pad(da, {'x': 0})
the following value error is called:
ValueError: could not broadcast input array from shape (0,) into shape (32,)
Instead, I expect the original array to be returned, as it is for xr.pad:
xr.pad
da.pad({'x': 0}) # works
The text was updated successfully, but these errors were encountered:
fix xgcm#202
75b0305
3542b44
Merge pull request #209 from cgahr/pad
60e37a4
fix #202
No branches or pull requests
If I call
the following value error is called:
Instead, I expect the original array to be returned, as it is for
xr.pad
:The text was updated successfully, but these errors were encountered: