The elementwise entropy function, \(-xlog(x)\).
Value
An Expression representing the entropy of the input.
Examples
x <- Variable(5)
obj <- Maximize(sum(entr(x)))
prob <- Problem(obj, list(sum(x) == 1))
result <- solve(prob)
result$getValue(x)
#> [,1]
#> [1,] 0.2
#> [2,] 0.2
#> [3,] 0.2
#> [4,] 0.2
#> [5,] 0.2