updateDelta | R Documentation |
Function to update Delta using given Uis and V. The new Delta is set as diag(U^T D V).
updateDelta(mat_list, u, v)
mat_list |
A list containing numeric matrices |
u |
A list containing U matrices |
v |
V matrix |
a list containing new U matrices
set.seed(1231) mymat <- createRandomMatrices(n = 3, ncols = 3, nrows = 3) sbf <- SBF(matrix_list = mymat, orthogonal = FALSE, transform_matrix = FALSE) newU <- updateU(mymat, sbf$delta, sbf$v) newDelta <- updateDelta(mymat, newU, sbf$v)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.