SCM Repository
[matrix] Diff of /pkg/R/Matrix.R
Diff of /pkg/R/Matrix.R
Parent Directory
|
Revision Log
|
Patch
172 |
function(x, y) callGeneric(x, as.matrix(y))) |
function(x, y) callGeneric(x, as.matrix(y))) |
173 |
|
|
174 |
setMethod("%*%", signature(x = "numeric", y = "Matrix"), |
setMethod("%*%", signature(x = "numeric", y = "Matrix"), |
175 |
function(x, y) callGeneric(rbind(x), y)) |
function(x, y) callGeneric(matrix(x, nrow = 1, byrow=TRUE), y)) |
176 |
|
|
177 |
setMethod("crossprod", signature(x = "Matrix", y = "numeric"), |
setMethod("crossprod", signature(x = "Matrix", y = "numeric"), |
178 |
function(x, y = NULL) callGeneric(x, as.matrix(y))) |
function(x, y = NULL) callGeneric(x, as.matrix(y))) |
|
Legend:
Removed from v.1659 |
|
changed lines |
|
Added in v.1660 |
|
|