The R Project SVN R-packages

Rev

Rev 4953 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4953 Rev 4975
Line 63... Line 63...
63
 
63
 
64
## setMethod("solve", signature(a = "dMatrix", b = "integer"),
64
## setMethod("solve", signature(a = "dMatrix", b = "integer"),
65
##           function(a, b, ...) callGeneric(a, as.numeric(b)))
65
##           function(a, b, ...) callGeneric(a, as.numeric(b)))
66
 
66
 
67
setMethod("expm", signature(x = "dMatrix"),
67
setMethod("expm", signature(x = "dMatrix"),
68
          function(x) callGeneric(as(x, "dgeMatrix")))
68
	  function(x) expm(as(x, "dgeMatrix")))
69
 
69
 
70
 
70
 
71
## Group Methods, see ?Arith (e.g.)
71
## Group Methods, see ?Arith (e.g.)
72
## -----
72
## -----
73
## >>> More specific methods for sub-classes (sparse), use these as "catch-all":
73
## >>> More specific methods for sub-classes (sparse), use these as "catch-all":