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
Base.fma
Num
Currently trying to use fma on Symbolics variables (Num) fails. This should be supported, I think.
fma
Given that Num can contain either symbolic or numeric values, fma for Nums can behave differently depending on whether some arguments are symbolic:
muladd
The text was updated successfully, but these errors were encountered:
I would think this just needs to get registered.
Sorry, something went wrong.
No branches or pull requests
Currently trying to use
fma
on Symbolics variables (Num
) fails. This should be supported, I think.Given that
Num
can contain either symbolic or numeric values,fma
forNum
s can behave differently depending on whether some arguments are symbolic:muladd
if any of the threeNum
arguments tofma
is symbolic.fma
on the unwrapped numeric values and return aNum
that wraps the result thus obtained.The text was updated successfully, but these errors were encountered: