https://github.com/cran/Matrix
Raw File
Tip revision: 5867f1c6c728f0a09da3ebda6ed3a365084e0fc5 authored by Douglas Bates on 19 January 2006, 00:00:00 UTC
version 0.995-2
Tip revision: 5867f1c
NAMESPACE
## Needs R-2.3.0 or later
#useDynLib(Matrix, .registration=TRUE)
useDynLib(Matrix)

importFrom("graphics",image)
importFrom("graphics",plot)		## lmer-related
importFrom("lattice", levelplot)
importFrom("grid",    grid.rect, gpar, grob)
import("stats")				## lmer-related

## Currently, group generics need to be explicitly imported (Bug?):
importFrom("methods", Arith, Compare, Math, Math2, Summary, Complex)

## Generics and functions defined in this package
export("Diagonal",
       "Hilbert",
       "Matrix",
       "Schur",
       "expand",
       "expm",
       "facmul",
#        "isTriangular",
#        "isDiagonal",
#        "isSymmetric" is in R 2.3.0
       "lu",
       "norm",
       "rcond",
       "readHB",
       "readMM",
       "tcrossprod",
       "unpack",
       "writeHB",
       "writeMM"
       )

## workaround S4-Group(generic|method) quirk: R/AllGeneric.R
## needs setGeneric(*, group=) and this for all non-Primitives :
export(
       ## "Math"
       "log",
       "gamma",
       "lgamma",

       ## "Math2"
       "round",
       "signif",

       ## "Summary"
       "max",
       "min",
       "range",
       "prod",
       "sum",
       "any",
       "all"
)


## lmer-related
export("lmer", "mcmcsamp")

exportClasses(
	      "index",

	      "BunchKaufman",
	      "pBunchKaufman",
	      "Cholesky",
	      "pCholesky",
	      "LU",

	      "Matrix",
	      ## also intermediate `virtual' ones:
	      "dMatrix",
	      "lMatrix",
	      "denseMatrix",
	      "sparseMatrix",

              "diagonalMatrix",
              "generalMatrix",
              "symmetricMatrix",
              "triangularMatrix",

              "compMatrix",

	      "dsparseMatrix",
	      "lsparseMatrix",
	      "TsparseMatrix",
	      "CsparseMatrix",
	      "ddenseMatrix",
	      ## not yet used, but as sub-classes;
	      ## need to provide them for 'hierarchy-analysis':
	      "iMatrix",
	      "zMatrix",
	      "ldenseMatrix",

	      "dgCMatrix",
	      "dgRMatrix",# unused
	      "dgTMatrix",
	      "dgeMatrix",
	      "dpoMatrix",
	      "dppMatrix",
	      "dsCMatrix",
	      "dsRMatrix",# unused
	      "dsTMatrix",
	      "dspMatrix",
	      "dsyMatrix",
	      "dtCMatrix",
	      "dtRMatrix",# unused
	      "dtTMatrix",
	      "dtpMatrix",
	      "dtrMatrix",
              "ddiMatrix",
	      "lgeMatrix",
	      "lspMatrix",
	      "lsyMatrix",
	      "ltpMatrix",
	      "ltrMatrix",
              "ldiMatrix",

	      "lgCMatrix",
	      "lgRMatrix",
	      "lgTMatrix",
	      "lsCMatrix",
	      "lsRMatrix",# unused
	      "lsTMatrix",
	      "ltCMatrix",
	      "ltRMatrix",# unused
	      "ltTMatrix",
              "pMatrix",

	      "dCholCMatrix",
	      "lCholCMatrix",
              "dCHMsuper",
              "dCHMsimpl",
              "correlation" # unused
	      )

## lmer-related
exportClasses("lmer", "lmer.ranef", "mer")


exportMethods(
	      ## Group Methods
	      "Arith",
	      "Math",
	      "Math2",
	      "Summary",
	      "Compare",

	      "!",
	      "+",# for dgT(Matrix) only
	      "%*%",

	      "Schur",
	      "as.array",
	      "as.matrix",
	      "as.vector",
	      "chol",
	      "colMeans",
	      "colSums",
	      "coerce",
	      "crossprod",
	      "determinant",
	      "diag",
	      "dim",
	      "dimnames",
	      "dimnames<-",
	      "expand",
	      "expm",
	      "kronecker",
	      "image",
## 	       "isDiagonal",
## 	       "isSymmetric",
## 	       "isTriangular",
	      "norm",
	      "rcond",
	      "rowMeans",
	      "rowSums",
	      "show",
	      "solve",
	      "t",
	      "tcrossprod"
	      )

## only for R >= 2.2:
if(paste(R.version$major, R.version$minor, sep=".") >= "2.2") {

exportMethods("rbind2")
exportMethods("cbind2")

}


## lmer-related
exportMethods("BIC", "anova", "coef", "confint", "deviance", "fitted",
	      "fixef", "formula", "lmer", "logLik", "mcmcsamp",
              "plot", "ranef", "residuals", "resid", "simulate",
	      "summary", "terms", "update", "vcov", "VarCorr", "with")

back to top