Learn R Programming

CVXR (version 1.0-14)

kl_div: Kullback-Leibler Divergence

Description

The elementwise Kullback-Leibler divergence, \(x\log(x/y) - x + y\).

Usage

kl_div(x, y)

Value

An Expression representing the KL-divergence of the input.

Arguments

x

An Expression, vector, or matrix.

y

An Expression, vector, or matrix.

Examples

Run this code
n <- 5
alpha <- seq(10, n-1+10)/n
beta <- seq(10, n-1+10)/n
P_tot <- 0.5
W_tot <- 1.0

P <- Variable(n)
W <- Variable(n)
R <- kl_div(alpha*W, alpha*(W + beta*P)) - alpha*beta*P
obj <- sum(R)
constr <- list(P >= 0, W >= 0, sum(P) == P_tot, sum(W) == W_tot)
prob <- Problem(Minimize(obj), constr)
result <- solve(prob)

result$value
result$getValue(P)
result$getValue(W)

Run the code above in your browser using DataLab