computeUDelta | R Documentation |
Function to compute U and Delta for a given set of matrices and V.
computeUDelta(mat_list, V, orthogonal = TRUE)
mat_list |
A list containing numeric matrices |
V |
A numeric matrix of dimension ncol(matrix1) * ncol(matrix1) |
orthogonal |
Compute U with orthonormal columns. Default TRUE |
list of U and delta
set.seed(1231) mymat <- createRandomMatrices(n = 3, ncols = 3, nrows = 3) set.seed(325) mymat_rand <- createRandomMatrices(n = 1, ncols = 3, nrows = 3)[[1]] out <- computeUDelta(mymat, svd(mymat_rand)$v)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.