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