Rev 6563 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/pdMat.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{pdMat}\title{Positive-Definite Matrix}\usage{pdMat(value, form, nam, data, pdClass)}\alias{pdMat}\alias{plot.pdMat}\arguments{\item{value}{an optional initialization value, which can be any of thefollowing: a \code{pdMat} object, a positive-definitematrix, a one-sided linear formula (with variables separated by\code{+}), a vector of character strings, or a numericvector. Defaults to \code{numeric(0)}, corresponding to anuninitialized object.}\item{form}{an optional one-sided linear formula specifying therow/column names for the matrix represented by \code{object}. Becausefactors may be present in \code{form}, the formula needs to beevaluated on a data.frame to resolve the names it defines. Thisargument is ignored when \code{value} is a one-sidedformula. Defaults to \code{NULL}.}\item{nam}{an optional vector of character strings specifying therow/column names for the matrix represented by object. It must havelength equal to the dimension of the underlying positive-definitematrix and unreplicated elements. This argument is ignored when\code{value} is a vector of character strings. Defaults to\code{NULL}.}\item{data}{an optional data frame in which to evaluate the variablesnamed in \code{value} and \code{form}. It is used toobtain the levels for \code{factors}, which affect thedimensions and the row/column names of the underlying matrix. If\code{NULL}, no attempt is made to obtain information on\code{factors} appearing in the formulas. Defaults to theparent frame from which the function was called.}\item{pdClass}{an optional character string naming the\code{pdMat} class to be assigned to the returned object. Thisargument will only be used when \code{value} is not a \code{pdMat}object. Defaults to \code{"pdSymm"}.}}\description{This function gives an alternative way of constructing an objectinheriting from the \code{pdMat} class named in \code{pdClass}, orfrom \code{data.class(object)} if \code{object} inherits from\code{pdMat}, and is mostly used internally in other functions. Seethe documentation on the principal constructor function, generallywith the same name as the \code{pdMat} class of object.}\value{a \code{pdMat} object representing a positive-definite matrix,inheriting from the class named in \code{pdClass}, or from\code{class(object)}, if \code{object} inherits from \code{pdMat}.}\references{Pinheiro, J.C., and Bates, D.M. (2000) "Mixed-Effects Modelsin S and S-PLUS", Springer.}\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}\seealso{\code{\link{pdClasses}},\code{\link{pdCompSymm}}, \code{\link{pdDiag}},\code{\link{pdIdent}}, \code{\link{pdNatural}},\code{\link{pdSymm}},\code{\link{reStruct}},\code{\link{solve.pdMat}},\code{\link{summary.pdMat}}}\examples{pd1 <- pdMat(diag(1:4), pdClass = "pdDiag")pd1str(pd1)}\keyword{models}