| ADMM_EN2 | R Documentation | 
Applies Alternating Direction Method of Multipliers to the l1-regularized quadratic program
f(\mathbf{x}) + g(\mathbf{x}) = \frac{1}{2}\mathbf{x}^TA\mathbf{x} - d^T\mathbf{x} + \lambda |\mathbf{x}|_1
ADMM_EN2(R, d, x0, lam, mu, maxits, tol, quiet, selector = rep(1, dim(x)[1]))
| R | Upper triangular matrix in Chol decomp  | 
| d | nx1 dimensional column vector. | 
| lam | Regularization parameter for l1 penalty, must be greater than zero. | 
| mu | Augmented Lagrangian penalty parameter, must be greater than zero. | 
| maxits | Number of iterations to run | 
| tol | Vector of stopping tolerances, first value is absolute, second is relative tolerance. | 
| quiet | Logical controlling display of intermediate statistics. | 
| selector | Vector to choose which parameters in the discriminant vector will be used to calculate the regularization terms. The size of the vector must be *p* the number of predictors. The default value is a vector of all ones. This is currently only used for ordinal classification. | 
This function is used by other functions and should only be called explicitly for debugging purposes.
ADMM_EN2 returns an object of class "ADMM_EN2" including a list
with the following named components
callThe matched call.
xFound solution.
yDual solution.
zSlack variables.
kNumber of iterations used.
Used by: SDAD and the SDADcv cross-validation version.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.