USV | R Documentation |
Singular Value Decomposition
USV(G)
G |
Matrix |
returns matrices U, S, V according to matlab convention.
list:
U |
Matrix |
S |
Matrix, singular values |
V |
Matrix |
Jonathan M. Lees<jonathan.lees@unc.edu>
svd
hilbert <- function(n) { i <- 1:n; 1 / outer(i - 1, i, "+") }
X <- hilbert(9)[,1:6]
h = USV(X)
print( h$U )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.