View source: R/matrix_factorization.R
GSVD | R Documentation |
Function to compute GSVD factorization for two matrices D1 and D2
GSVD(D1, D2)
D1 |
A numeric matrix for GSVD factorization. |
D2 |
A numeric matrix for GSVD factorization. |
a list containing u1, u2, v, d1, and d2
set.seed(1231) mymat <- createRandomMatrices(n = 2, ncols = 3, nrows = 4:6) gsvd <- GSVD(mymat$mat1, mymat$mat2) print(gsvd$v)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.