Rev 6562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/coef.modelStruct.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{coef.modelStruct}\title{Extract modelStruct Object Coefficients}\usage{\method{coef}{modelStruct}(object, unconstrained, \dots)\method{coef}{modelStruct}(object, \dots) <- value}\alias{coef.modelStruct}\alias{coef<-.modelStruct}\arguments{\item{object}{an object inheriting from class \code{"modelStruct"},representing a list of model components, such as \code{"\link{corStruct}"} and\code{"\link{varFunc}"} objects.}\item{unconstrained}{a logical value. If \code{TRUE} the coefficientsare returned in unconstrained form (the same used in the optimizationalgorithm). If \code{FALSE} the coefficients are returned in"natural", possibly constrained, form. Defaults to \code{TRUE}.}\item{value}{a vector with the replacement values for the coefficientsassociated with \code{object}. It must be a vector with the same lengthof \code{coef{object}} and must be given in unconstrained form.}\item{\dots}{some methods for this generic require additionalarguments. None are used in this method.}}\description{This method function extracts the coefficients associated with eachcomponent of the \code{modelStruct} list.}\value{a vector with all coefficients corresponding to the components of\code{object}.}\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}\section{SIDE EFFECTS}{On the left side of an assignment, sets the values of the coefficientsof \code{object} to \code{value}. \code{Object} must be initialized (using\code{Initialize}) before new values can be assigned to itscoefficients.}\seealso{\code{\link{Initialize}}}\examples{lms1 <- lmeStruct(reStruct = reStruct(pdDiag(diag(2), ~age)),corStruct = corAR1(0.3))coef(lms1)}\keyword{models}