View source: R/graphLaplacianEstimation.R
learn_laplacian_gle_admm | R Documentation |
Learn the weighted Laplacian matrix of a graph using the ADMM method
learn_laplacian_gle_admm( S, A_mask = NULL, alpha = 0, rho = 1, maxiter = 10000, reltol = 1e-05, record_objective = FALSE, verbose = TRUE )
S |
a pxp sample covariance/correlation matrix |
A_mask |
the binary adjacency matrix of the graph |
alpha |
L1 regularization hyperparameter |
rho |
ADMM convergence rate hyperparameter |
maxiter |
the maximum number of iterations |
reltol |
relative tolerance on the Laplacian matrix estimation |
record_objective |
whether or not to record the objective function. Default is FALSE |
verbose |
if TRUE, then a progress bar will be displayed in the console. Default is TRUE |
A list containing possibly the following elements:
|
the estimated Laplacian Matrix |
|
the estimated Adjacency Matrix |
|
boolean flag to indicate whether or not the optimization converged |
|
values of the objective function at every iteration in case record_objective = TRUE |
Ze Vinicius, Jiaxi Ying, and Daniel Palomar
Licheng Zhao, Yiwei Wang, Sandeep Kumar, and Daniel P. Palomar. Optimization Algorithms for Graph Laplacian Estimation via ADMM and MM. IEEE Trans. on Signal Processing, vol. 67, no. 16, pp. 4231-4244, Aug. 2019
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.