#1173: implement numerical evaluation of erf at complex arguments
------------------------------------------------------------------------------+
Reporter: was |
Owner: was
Type: enhancement |
Status: needs_work
Priority: major |
Milestone: sage-4.7.1
Component: calculus |
Keywords:
Work_issues: add erf(sqrt(2)) and erf(45000).n(), formatting, perhaps speed |
Upstream: N/A
Reviewer: Burcin Erocal |
Author: D. S. McNeil
Merged: |
Dependencies:
------------------------------------------------------------------------------+
Changes (by kcrisman):
* work_issues: => add erf(sqrt(2)) and erf(45000).n(), formatting,
perhaps speed
Comment:
Here's another thing that should be added, reported by one of the PREP
workshop participants before this patch was in:
{{{
erf(4500).n()
1.0000000
erf(45000).n()
<boom>
}}}
So Pari was not handling big number in erf before. With this patch,
though
{{{
sage: erf(4500).n()
1.00000000000000
sage: erf(45000).n()
1.00000000000000
sage: erf(4500000000).n()
1.00000000000000
}}}
Since none of the doctests in the current patch seem to test "big" real
input to erf, we should add this too.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/1173#comment:15>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.