Rev 3519 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
library(Matrix)### Matrix Products including cross productssource(system.file("test-tools.R", package = "Matrix"))m5 <- 1 + as(diag(-1:4)[-5,], "dgeMatrix")## named dimnames:dimnames(m5) <- list(Rows= LETTERS[1:5], paste("C", 1:6, sep=""))m. <- as(m5,"matrix")stopifnot(dim(m5) == 5:6,class(cm5 <- crossprod(m5)) == "dpoMatrix")assert.EQ.mat((c.m5 <- t(m5) %*% m5), as(cm5, "matrix"))## crossprod() with numeric vector RHS and LHS## not sensical for tcrossprod() because of 'vec' --> cbind(vec) promotion:assert.EQ.mat( crossprod(rep(1,5), m5), rbind( colSums(m5)))assert.EQ.mat( crossprod(rep(1,5), m.), rbind( colSums(m5)))assert.EQ.mat( crossprod(m5, rep(1,5)), cbind( colSums(m5)))assert.EQ.mat( crossprod(m., rep(1,5)), cbind( colSums(m5)))## classes differ; but the 'dimnames' are *both* missing -- FIXMEtc.m5 <- m5 %*% t(m5)(tcm5 <- tcrossprod(m5)) # "dpo*"assert.EQ.mat(tc.m5, mm5 <- as(tcm5, "matrix"))# missing dimnames - FIXME## tcrossprod(x,y) :assert.EQ.mat(tcrossprod(m5, m5), mm5)assert.EQ.mat(tcrossprod(m5, as(m5,"matrix")), mm5)assert.EQ.mat(tcrossprod(as(m5,"matrix"), m5), mm5)## simple cases with 'scalars' treated as 1x1 matrices:d <- Matrix(1:5)d %*% 210 %*% t(d)assertError(3 %*% d) # must give an error , similar toassertError(5 %*% as.matrix(d)) # -> error## right and left "numeric" and "matrix" multiplication:(p1 <- m5 %*% c(10, 2:6))(p2 <- c(10, 2:5) %*% m5)(pd1 <- m5 %*% diag(1:6))(pd2 <- diag(10:6) %*% m5)stopifnot(dim(crossprod(t(m5))) == c(5,5),c(class(p1),class(p2),class(pd1),class(pd2)) == "dgeMatrix")assert.EQ.mat(p1, cbind(c(20,30,33,38,54)))assert.EQ.mat(pd1, as(m5,"matrix") %*% diag(1:6))assert.EQ.mat(pd2, diag(10:6) %*% as(m5,"matrix"))## check that 'solve' and '%*%' are inversesset.seed(1)A <- Matrix(rnorm(25), nc = 5)y <- rnorm(5)all.equal((A %*% solve(A, y))@x, y)Atr <- new("dtrMatrix", Dim = A@Dim, x = A@x, uplo = "U")all.equal((Atr %*% solve(Atr, y))@x, y)## sparse matrix productsdata(KNex); mm <- KNex$mmM <- mm[1:500, 1:200]MT <- as(M, "TsparseMatrix")cpr <- t(mm) %*% mmshowMethods("%*%", class=class(M))v1 <- rep(1, ncol(M))str(r <- M %*% Matrix(v1))str(rT <- MT %*% Matrix(v1))stopifnot(identical(r, rT))str(r. <- M %*% cbind(v1))stopifnot(identical4(r, r., rT, M %*% as(v1, "matrix")))v2 <- rep(1,nrow(M))r2 <- t(Matrix(v2)) %*% Mr2T <- v2 %*% MTstr(r2. <- v2 %*% M)stopifnot(identical4(r2, r2., rbind(v2) %*% M, t(as(v2, "matrix")) %*% M))###--- "logical" Matrices : ---------------------## Robert's Example, a bit more readablefromTo <- rbind(c(2,10),c(3, 9))N <- 10nrFT <- nrow(fromTo)rowi <- rep.int(1:nrFT, fromTo[,2]-fromTo[,1] + 1) - 1:1coli <- unlist(lapply(1:nrFT, function(x) fromTo[x,1]:fromTo[x,2])) - 1:1sM <- new("lgTMatrix", i = rowi, j=coli, Dim=as.integer(c(N,N)))sM # nicesm <- as(sM, "matrix")sM %*% sMassert.EQ.mat(sM %*% sM, sm %*% sm)assert.EQ.mat(t(sM) %*% sM,(t(sm) %*% sm) > 0, tol=0)crossprod(sM)tcrossprod(sM)stopifnot(identical(as( crossprod(sM), "lgCMatrix"), t(sM) %*% sM),identical(as(tcrossprod(sM), "lgCMatrix"), sM %*% t(sM)))assert.EQ.mat( crossprod(sM), crossprod(sm) > 0)assert.EQ.mat(tcrossprod(sM), as(tcrossprod(sm),"matrix") > 0)## A sparse example - with *integer* matrix:M <- Matrix(cbind(c(1,0,-2,0,0,0,0,0,2.2,0),c(2,0,0,1,0), 0, 0, c(0,0,8,0,0),0))t(M)(-4:5) %*% Mstopifnot(as.vector(print(t(M %*% 1:6))) ==c(as(M,"matrix") %*% 1:6))(M.M <- crossprod(M))MM. <- tcrossprod(M)stopifnot(class(MM.) == "dsCMatrix",class(M.M) == "dsCMatrix")## even simplerm <- matrix(0, 4,7); m[c(1, 3, 6, 9, 11, 22, 27)] <- 1(mm <- Matrix(m))(cm <- Matrix(crossprod(m)))stopifnot(identical(crossprod(mm), cm))(tm1 <- Matrix(tcrossprod(m))) #-> had bug in 'Matrix()' !(tm2 <- tcrossprod(mm))stopifnot(class(tm1) == class(tm2),class(tm1) == "dsCMatrix")# but they differ by "uplo"cat('Time elapsed: ', proc.time(),'\n') # for ``statistical reasons''