[NumPy-Tickets] [NumPy] #1961: numpy.log() doesn't accept very large numbers
NumPy Trac
numpy-tickets@scipy....
Fri Oct 14 13:50:11 CDT 2011
#1961: numpy.log() doesn't accept very large numbers
--------------------------+-------------------------------------------------
Reporter: staticfloat | Owner: somebody
Type: defect | Status: closed
Priority: normal | Milestone: Unscheduled
Component: numpy.core | Version: devel
Resolution: invalid | Keywords:
--------------------------+-------------------------------------------------
Changes (by pv):
* status: new => closed
* resolution: => invalid
* component: Other => numpy.core
Comment:
Pass in a floating-point number instead of Python long (which has
unlimited precision, and computing logarithm for those is not implemented)
{{{
>>> type(2**62)
<type 'int'>
>>> type(2**63)
<type 'long'>
}}}
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1961#comment:1>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list