Compute the log of the sum of exponentials of input elements.
Parameters : | a : array_like
axis : int, optional
|
---|---|
Returns : | res : ndarray
|
See also
Notes
Numpy has a logaddexp function which is very similar to logsumexp, but only handles two arguments. logaddexp.reduce is similar to this function, but may be less stable.
Examples
>>> from scipy.misc import logsumexp
>>> a = np.arange(10)
>>> np.log(np.sum(np.exp(a)))
9.4586297444267107
>>> logsumexp(a)
9.4586297444267107