Rev 6562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/pdIdent.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{pdIdent}\title{Multiple of the Identity Positive-Definite Matrix}\usage{pdIdent(value, form, nam, data)}\alias{pdIdent}\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 numericvalue. Defaults to \code{numeric(0)}, correspondingto an uninitialized 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.}}\description{This function is a constructor for the \code{pdIdent} class,representing a multiple of the identity positive-definite matrix.The matrix associated with \code{object} is represented by 1unrestricted parameter, given by the logarithm of the square-root ofthe diagonal value. When \code{value} is\code{numeric(0)}, an uninitialized \code{pdMat} object, a one-sidedformula, or a vector of character strings, \code{object} is returnedas an uninitialized \code{pdIdent} object (with just some of itsattributes and its class defined) and needs to have its coefficientsassigned later, generally using the \code{coef} or \code{matrix} replacementfunctions. If \code{value} is an initialized \code{pdMat} object,\code{object} will be constructed from\code{as.matrix(value)}. Finally, if \code{value} is a numeric value,it is assumed to represent the unrestricted coefficient of theunderlying positive-definite matrix.}\value{a \code{pdIdent} object representing a multiple of the identitypositive-definite matrix, also inheriting from class \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{as.matrix.pdMat}},\code{\link{coef.pdMat}},\code{\link{pdClasses}},\code{\link{matrix<-.pdMat}}}\examples{pd1 <- pdIdent(4 * diag(3), nam = c("A","B","C"))pd1}\keyword{models}