| math_atoms | R Documentation |
CVXR registers methods so that standard R functions create the
appropriate atoms when applied to Expression objects.
For CVXR expressions, computes the matrix/vector norm atom.
For other inputs, falls through to norm.
For CVXR expressions, computes the standard deviation atom (ddof=0 by default,
matching CVXPY/numpy convention). For numeric inputs, falls through to
sd.
For CVXR expressions, computes the variance atom (ddof=0 by default).
For numeric inputs, falls through to var.
For CVXR expressions, computes the outer product of two vectors.
For other inputs, falls through to outer.
norm(x, type = "2", ...)
sd(x, ...)
var(x, ...)
outer(X, Y, ...)
x |
An Expression or numeric. |
type |
Norm type: |
... |
For non-Expression inputs: passed to |
X |
An Expression or numeric. |
Y |
An Expression or numeric. |
An Expression or numeric value.
An Expression or numeric value.
An Expression or numeric value.
An Expression or matrix.
abs(x)Absolute value (convex, nonneg)
exp(x)Exponential (convex, positive)
log(x)Natural logarithm (concave, domain x >= 0)
sqrt(x)Square root via power(x, 0.5) (concave)
log1p(x)log(1+x) compound expression (concave)
log2(x), log10(x)Base-2/10 logarithm
cumsum(x)Cumulative sum (affine)
cummax(x)Cumulative max (convex)
cumprod(x)Cumulative product
ceiling(x), floor(x)Round up/down (MIP)
sum(x)Sum all entries (affine)
max(x)Maximum entry (convex)
min(x)Minimum entry (concave)
mean(x)Arithmetic mean; pass axis/keepdims via ...
diff(x)First-order differences; also cvxr_diff
These mask the base/stats versions and dispatch on argument type:
norm(x)2-norm; use type for "1", "I" (infinity), "F" (Frobenius)
sd(x)Standard deviation (ddof=0 for expressions)
var(x)Variance (ddof=0 for expressions)
outer(X, Y)Outer product of two vector expressions
For axis-aware reductions, keepdims, or other options not available
through the standard interface, use the explicit functions:
cvxr_norm, cvxr_mean, cvxr_diff,
cvxr_std, cvxr_var, cvxr_outer.
power, sum_entries,
max_entries, min_entries
cvxr_norm for the full-featured version with
axis and keepdims arguments
cvxr_std for the full-featured version
cvxr_var for the full-featured version
cvxr_outer for the CVXR-specific version
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.