myCX {mwTensor} | R Documentation |
CX Decomposition as an example of user-defined matrix decomposition.
Description
The input data is assumed to be a matrix. When algorithms of MWCAParams and CoupledMWCAParams are specified as "myCX", This function is called in MWCA and CoupledMWCA.
Usage
myCX(Xn, k)
Arguments
Xn |
The input matrix which has N-rows and M-columns. |
k |
The rank parameter (k <= min(N,M)) |
Value
The output matrix which has N-rows and k-columns.
Author(s)
Koki Tsuyuzaki
References
Petros Drineas et al., (2008). Relative-Error CUR Matrix Decompositions, SIAM Journal on Matrix Analysis and Applications, 30(2), 844-881.
Examples
if(interactive()){
# Test data
matdata <- matrix(runif(10*20), nrow=10, ncol=20)
# Perform CX
myCX(matdata, k=3)
}
[Package mwTensor version 1.1.0 Index]