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
setindex!()
There is a bug in setindex! functionality. Current implementation results in
setindex!
julia> using Polynomials julia> p = Polynomials.Poly([1, 2, 1]) Poly(1 + 2x + x^2) julia> p[5] = 1 1 julia> p Poly(1 + 2x + x^5)
which clears the coefficient of the highest degree term in the polynomial.
The text was updated successfully, but these errors were encountered:
577ae4b
Merge pull request #50 from aytekinar/48-bug-setindex
d63ed08
Fix bug in `setindex!()` - closes #48
No branches or pull requests
There is a bug in
setindex!
functionality. Current implementation results inwhich clears the coefficient of the highest degree term in the polynomial.
The text was updated successfully, but these errors were encountered: