powered by
SparseplusLowRank
create an object of class SparseplusLowRank which can be efficiently stored and for which efficient linear algebra operations are possible.
splr(x, a = NULL, b = NULL)
sparse matrix with dimension say m x n
matrix with m rows and number of columns r less than min(dim(x))
min(dim(x))
matrix with n rows and number of columns r less than min(dim(x))
an object of S4 class SparseplusLowRank is returned with slots x, a and b
x
a
b
SparseplusLowRank-class, softImpute
SparseplusLowRank-class
softImpute
# NOT RUN { x=matrix(sample(c(3,0),15,replace=TRUE),5,3) x=as(x,"sparseMatrix") a=matrix(rnorm(10),5,2) b=matrix(rnorm(6),3,2) new("SparseplusLowRank",x=x,a=a,b=b) splr(x,a,b) # }
Run the code above in your browser using DataLab