
Efficient implementation (via Fortran) of the log-sum-exp function.
logsumexp(x, v = NULL)
Returns a vector of values of length equal to the number of rows of x
.
a matrix of dimension
an optional vector of length x
matrix. If not provided, a vector of zeros is used.
Luca Scrucca
Given the matrix x
, for each row
softmax
x = matrix(rnorm(15), 5, 3)
v = log(c(0.5, 0.3, 0.2))
logsumexp(x, v)
Run the code above in your browser using DataLab