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
It would be really nice if this worked:
sage: var('x y') sage: f=x^2+y^2<=1 sage: g=f._fast_float_('x','y') sage: g(1,2) False sage: g(0.5,0.5) True
Here is a toy implementation:
def ff(func,*args): g1 = func.left()._fast_float_(*args) g2 = func.right()._fast_float_(*args) oper = func.operator() def ret(*sub_args): return oper(g1(*sub_args), g2(*sub_args)) return ret
Component: calculus
Issue created by migration from https://trac.sagemath.org/ticket/2703
The text was updated successfully, but these errors were encountered:
This looks like a near duplicate of #2768, where it was decided that this functionality was a bad idea. See comment by robertwb.
Sorry, something went wrong.
Thanks Jason,
this is invalid - another ticket gone :)
Cheers,
Michael
williamstein
No branches or pull requests
It would be really nice if this worked:
Here is a toy implementation:
Component: calculus
Issue created by migration from https://trac.sagemath.org/ticket/2703
The text was updated successfully, but these errors were encountered: