log_sum_exp | R Documentation |
The natural logarithm of the sum of the elementwise exponential, \log\sum_{i=1}^n e^{x_i}
.
log_sum_exp(x, axis = NA_real_, keepdims = FALSE)
x |
An Expression, vector, or matrix. |
axis |
(Optional) The dimension across which to apply the function: |
keepdims |
(Optional) Should dimensions be maintained when applying the atom along an axis? If |
An Expression representing the log-sum-exponential of the input.
A <- Variable(2,2)
val <- cbind(c(5,7), c(0,-3))
prob <- Problem(Minimize(log_sum_exp(A)), list(A == val))
result <- solve(prob)
result$getValue(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.