updateV | R Documentation |
Function to update V using given Delta and U. The new V is set as X Y^T, where SVD of D^T U Delta = X Sigma Y^T.
updateV(mat_list, u, d)
mat_list |
A list containing numeric matrices |
u |
A list containing U matrices |
d |
A list containing delta matrices |
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) newV <- updateV(mymat, newU, newDelta)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.