Singular Value Decomposition
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 )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.