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
I find a strange thing,
bd.move_mean([1.9272201201869577, 0.0, 0.0, 0.0], 3)
this print:
[ nan, nan, 6.36527364e-01, 6.42406707e-01, 7.40148683e-17]
the last result should be 0 instead of 7.40148683e-17 actually.
0
7.40148683e-17
With the slow version https://github.com/pydata/bottleneck/blob/master/bottleneck/slow/move.py#L26 here: it results
[ nan nan 0.63652736 0.64240671 0. ]
The text was updated successfully, but these errors were encountered:
same issue
Sorry, something went wrong.
Same issue here, any improvements?
qwhelan
No branches or pull requests
I find a strange thing,
this print:
the last result should be
0
instead of7.40148683e-17
actually.With the slow version https://github.com/pydata/bottleneck/blob/master/bottleneck/slow/move.py#L26 here:
it results
The text was updated successfully, but these errors were encountered: