Rev 1836 | Rev 2059 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
setMethod("crossprod", signature(x = "CsparseMatrix", y = "missing"),function(x, y = NULL).Call("Csparse_crossprod", x, trans = FALSE, triplet = FALSE,PACKAGE = "Matrix"))setMethod("t", signature(x = "CsparseMatrix"),function(x).Call("Csparse_transpose", x, PACKAGE = "Matrix"))setMethod("tcrossprod", signature(x = "CsparseMatrix"),function(x).Call("Csparse_crossprod", x, trans = TRUE, triplet = FALSE,PACKAGE = "Matrix"))