-
-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
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
Add some more integral functions #437
Conversation
Looks similar to a77c08e. I was meaning to make a PR but didn't get round to it. |
>> Erf[0] | ||
= 0 | ||
>> Plot[Erf[x], {x, -2, 2}] | ||
= -Graphics- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be InverseErf
not Erf
.
Happy to rebase this on a77c08e if you like? Didn't realise you were already looking at this! There are some tests in that commit that I think it'd be good to have. |
I think it's fine not to rebase. Feel free to copy the tests if you think they're useful. I am working on fixing some precision issues related to |
Gamma with two inexact arguments tried to call mpmath's gamma function which only accepts one argument.
These were taken from commit a77c08e.
c4e33a6
to
9cbe8d6
Compare
Looks good 👍 , anything more to add? |
Great, thanks for the review! Still got a few (small) things to add, I'll push these shortly. |
Slight simplification since Log is the only builtin overriding it.
Shall I merge this? |
Yep, if you're happy with it I'm happy with it |
Still to do:
_MPMathFunction
to support dispatching to multiple mpmath functionsErf
InverseErf