SCM Repository
[matrix] Diff of /pkg/R/Matrix.R
Diff of /pkg/R/Matrix.R
Parent Directory
|
Revision Log
|
Patch
19 |
|
|
20 |
## Note that isSymmetric is *not* exported --- |
## Note that isSymmetric is *not* exported --- |
21 |
### but also note that "base" eigen may get an isSymmetric() that *would* be exported! |
### but also note that "base" eigen may get an isSymmetric() that *would* be exported! |
22 |
setMethod("isSymmetric", signature(object = "symmetricMatrix", tol="ANY"), |
setMethod("isSymmetric", signature(object = "symmetricMatrix"), |
23 |
function(object,tol) TRUE) |
function(object,tol) TRUE) |
24 |
setMethod("isSymmetric", signature(object = "triangularMatrix", tol="ANY"), |
setMethod("isSymmetric", signature(object = "triangularMatrix"), |
25 |
## FIXME: 'TRUE' if *diagonal*, i.e. return(isDiagonal(object)) |
## FIXME: 'TRUE' if *diagonal*, i.e. return(isDiagonal(object)) |
26 |
function(object,tol) FALSE) |
function(object,tol) FALSE) |
27 |
|
|
|
Legend:
Removed from v.1107 |
|
changed lines |
|
Added in v.1108 |
|
|