- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message58770
This issue tracker has been migrated to GitHub,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
| Author | christian.heimes |
|---|---|
| Recipients | Rhamphoryncus, christian.heimes, gvanrossum, mark.dickinson |
| Date | 2007-12-18.21:05:40 |
| SpamBayes Score | 0.07327129 |
| Marked as misclassified | No |
| Message-id | <47683623.2030800@cheimes.de> |
| In-reply-to | <1198006605.14.0.0547459456049.issue1640@psf.upfronthosting.co.za> |
| Content | |
|---|---|
Guido van Rossum wrote: > Guido van Rossum added the comment: > > i suggest abandoning any attempts at implementing math ourselves. I > also suggest not combining this with #1635 but reviewing and > (eventually) applying the latter first. How do you like a compromise? I rip out the new functions for the math module except isnan(), isinf() and sign(). The new patch would contain the inf and nan roundtrip plus the helper methods. Mark is right. My naive functions are a numerical nightmare for small and large numbers. I copied them from my math handbook 'cause I couldn't find solid implementations in my numerical handbook. It contains all sort of algorithms for approximations, ODE, PDE, FFT but no sample of the inverse hyperbolic functions. We could reuse the functions from the BSD libm. They are used in numerous C runtime libraries (BSD, Mac OS X, uclibc). http://packages.e.kth.se/common/src/os/NetBSD/1.3.2/lib/libm/src/ Christian |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2007-12-18 21:05:41 | christian.heimes | set | spambayes_score: 0.0732713 -> 0.07327129 recipients: + christian.heimes, gvanrossum, mark.dickinson, Rhamphoryncus |
| 2007-12-18 21:05:41 | christian.heimes | link | issue1640 messages |
| 2007-12-18 21:05:41 | christian.heimes | create | |

