Rev 1287 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
### triangular packedlibrary(Matrix)cp6 <- chol(Hilbert(6))tp6 <- as(cp6,"dtpMatrix")round(tp6, 3)## round() is "Math2" group method1/tp6 ## "Arith" group : gives 'dgeMatrix'str(tp6)stopifnot(validObject(tp6),all.equal(tp6 %*% diag(6), as(tp6, "dgeMatrix")),validObject(tp6. <- diag(6) %*% tp6),class((tt6 <- t(tp6))) == "dtpMatrix",identical(t(tt6), tp6),tp6@uplo == "U" && tt6@uplo == "L")all.equal(as(tp6.,"matrix"),as(tp6, "matrix"), tol= 1e-15)(tr6 <- as(tp6, "dtrMatrix")) ## prints using wrong class nameD. <- determinant(tp6)rc <- rcond(tp6)stopifnot(all.equal(D.$modulus, -6.579251212),all.equal(rc, 1.791511257e-4),rc == tp6@rcond,all.equal(norm(tp6, "I") , 2.45),all.equal(norm(tp6, "1") , 1),all.equal(norm(tp6, "F") , 1.37047826623))object.size(tp6)object.size(as(tp6, "dtrMatrix"))object.size(as(tp6, "matrix"))D6 <- as(diag(6), "dgeMatrix")ge6 <- as(tp6, "dgeMatrix")## Direct all.equal() fails, because ge6 has 'rcond', but the product not:mge6 <- as(ge6, "matrix")stopifnot(all.equal(as(D6 %*% tp6,"matrix"), mge6),all.equal(as(tp6 %*% D6,"matrix"), mge6))## larger caseset.seed(123)rl <- new("dtpMatrix", uplo="L", diag="N", Dim = rep.int(1000:1000,2),x = rnorm(500*1001))validObject(rl)str(rl)sapply(c("I", "1", "F"), function(type) norm(rl, type=type))rcond(rl)# 0 !stopifnot(all.equal(as(rl %*% diag(1000),"matrix"),as(rl, "matrix")))object.size(rl) ## 4 mioobject.size(as(rl, "dtrMatrix"))# 8 mioobject.size(as(rl, "matrix"))# ditodeterminant(rl)proc.time() # for ``statistical reasons''