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
In resampler.py the function wsinterp() has docstring that says
resampler.py
wsinterp()
left: float If given, set fp for x < xp[0] to left. Otherwise, if left is None (default) or not given, set fp for x < xp[0] to fp evaluated at xp[-1].
This doesn't make sense, and it's also not what the code is doing. I think xp[-1] here should be xp[0].
xp[-1]
xp[0]
As suggested.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
In
resampler.py
the functionwsinterp()
has docstring that saysThis doesn't make sense, and it's also not what the code is doing. I think
xp[-1]
here should bexp[0]
.Proposed solution
As suggested.
The text was updated successfully, but these errors were encountered: