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 current real::erf() implementation uses a Taylor series that does not converge and thus has precision issues.
real::erf()
10^(-n²/1.13)
That is to say, erf(8) will have a precision error of 10^(-8²/1.13) = 2.3e-57, e.g. the 57th decimal will be inaccurate.
erf(8)
10^(-8²/1.13)
2.3e-57
The text was updated successfully, but these errors were encountered:
Hey Sam
Sorry, something went wrong.
No branches or pull requests
The current
real::erf()
implementation uses a Taylor series that does not converge and thus has precision issues.10^(-n²/1.13)
.That is to say,
erf(8)
will have a precision error of10^(-8²/1.13)
=2.3e-57
, e.g. the 57th decimal will be inaccurate.The text was updated successfully, but these errors were encountered: