R/coef.maxLik.R

Defines functions coef.maxim coef.maxLik coef.summary.maxLik

Documented in coef.maxim coef.maxLik coef.summary.maxLik

coef.maxim <- function( object, ... ) {
   return( object$estimate )
}

coef.maxLik <- function( object, ... ) {
   return( object$estimate )
}

coef.summary.maxLik <- function( object, ... ) {
   result <- object$estimate
   return( result )
}
EBukin/maxLik-dev documentation built on May 6, 2019, 11:21 a.m.