powered by
This calculates right and left singular vectors of a data matrix possibly containing missing values.
svdc(X, nu = NULL, nv = NULL)
the data matrix of which to calcluate the completed SVD.
the number of left singular vectors to calculate
the nubmer of right singular vectors to calculate
# NOT RUN { Y <- rnorm(10)%*%t(rnorm(10)) Y[1,1] <- NA svdc.out <- svdc(Y) # }
Run the code above in your browser using DataLab