sk.decompose | R Documentation |
make SVD as well as orthogonal complements
sk.decompose(A, D)
A |
the input matrix |
D |
the linear transform |
U
S
V
U_perp: orthogonal complement for U
library(mvtnorm)
n = 350
p = 100
D <- diag(p)
Sigma = matrix(0, p, p)
X <- rmvnorm(n,matrix(0, p, 1), Sigma)
decompose.result <- sk.decompose(X, D)
U_perp <- decompose.result$U_perp
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.