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
The first expression below maintains integer coefficients, while adding one more term in the sum promotes all of them to floats.
julia> -216*Tsettle^2*ogain^3 - 1296*Tsettle^2*ogain^2 -1296(Tsettle^2)*(ogain^2) - 216(Tsettle^2)*(ogain^3) julia> -216*Tsettle^2*ogain^3 - 1296*Tsettle^2*ogain^2 - 648*Tsettle^2*ogain -648.0(Tsettle^2)*ogain - 1296.0(Tsettle^2)*(ogain^2) - 216.0(Tsettle^2)*(ogain^3)
This is bad since solve_multivar only likes ints and rationals (rationals also promote like the ints above)
solve_multivar
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The first expression below maintains integer coefficients, while adding one more term in the sum promotes all of them to floats.
This is bad since
solve_multivar
only likes ints and rationals (rationals also promote like the ints above)The text was updated successfully, but these errors were encountered: