powered by
Products between an SFBM and a vector.
sp_prodVec(X, y)sp_cprodVec(X, y)
sp_cprodVec(X, y)
sp_prodVec(): the vector which is equivalent to X %*% y if X was a dgCMatrix.
sp_prodVec()
X %*% y
X
sp_cprodVec(): the vector which is equivalent to Matrix::crossprod(X, y) if X was a dgCMatrix.
sp_cprodVec()
Matrix::crossprod(X, y)
An SFBM.
A vector of same size of the number of columns of X for sp_prodVec() abd as the number of rows of X for sp_cprodVec().
spmat <- Matrix::rsparsematrix(1000, 1000, 0.01) X <- as_SFBM(spmat) sp_prodVec(X, rep(1, 1000)) sp_cprodVec(X, rep(1, 1000))
Run the code above in your browser using DataLab