eigenMatMult {scMerge} | R Documentation |
Fast matrix multiplication using RcppEigen
eigenMatMult(A, B)
A |
a matrix |
B |
a matrix |
The matrix product of A times B
A = matrix(0, ncol = 500, nrow = 500) system.time(A %*% A) system.time(eigenMatMult(A, A))