This is documentation for an old release of SciPy (version 0.7.). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.maxentropy.arrayexpcomplex
-
scipy.maxentropy.arrayexpcomplex(x)
- Returns the elementwise antilog of the vector x. We try to
exponentiate with numpy.exp() and, if that fails, with python’s
math.exp(). numpy.exp() is about 10 times faster but throws an
OverflowError exception for numerical underflow (e.g. exp(-800),
whereas python’s math.exp() just returns zero, which is much more
helpful.