Nothing
#####
## DO NOT EDIT THIS FILE!! EDIT THE SOURCE INSTEAD: rsrc_tree/atoms/elementwise/entr.R
#####
## CVXPY SOURCE: atoms/elementwise/entr.py
## Entr -- elementwise entropy -x * log(x)
Entr <- new_class("Entr", parent = Elementwise, package = "CVXR",
constructor = function(x, id = NULL) {
if (is.null(id)) id <- next_expr_id()
x <- as_expr(x)
shape <- x@shape
obj <- new_object(S7_object(),
id = as.integer(id),
.cache = new.env(parent = emptyenv()),
args = list(x),
shape = shape
)
validate_arguments(obj)
obj
}
)
# -- sign: unknown ------------------------------------------------
method(sign_from_args, Entr) <- function(x) {
list(is_nonneg = FALSE, is_nonpos = FALSE)
}
# -- curvature: concave -------------------------------------------
method(is_atom_convex, Entr) <- function(x) FALSE
method(is_atom_concave, Entr) <- function(x) TRUE
# -- monotonicity: not monotone -----------------------------------
method(is_incr, Entr) <- function(x, idx, ...) FALSE
method(is_decr, Entr) <- function(x, idx, ...) FALSE
# -- domain: arg >= 0 ---------------------------------------------
method(atom_domain, Entr) <- function(x) {
list(x@args[[1L]] >= 0)
}
# -- numeric: -x * log(x) ----------------------------------------
method(numeric_value, Entr) <- function(x, values, ...) {
v <- values[[1L]]
## -x * log(x), with 0*log(0) = 0
result <- ifelse(v > 0, -v * log(v), ifelse(v == 0, 0, -Inf))
result
}
# -- graph_implementation: stub -----------------------------------
method(graph_implementation, Entr) <- function(x, arg_objs, shape, data = NULL, ...) {
cli_abort("graph_implementation for {.cls Entr} not yet implemented.")
}
#' Create an entropy atom -x * log(x)
#'
#' @param x An Expression
#' @returns An Entr atom
#' @export
entr <- function(x) {
Entr(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.