R/coef.slmfit.R

Defines functions coef.slmfit

Documented in coef.slmfit

#' Extract Model Coefficients
#'
#' @param object a \code{\link{slmfit}} object
#' @param ... additional arguments
#' @return a vector of fitted model coefficients.
#' @export

coef.slmfit <- function(object, ...)
{
  coef.vec <- object$CoefficientEsts
  return(coef.vec)
}
highamm/FPBK-with-Detection documentation built on Jan. 2, 2022, 6:35 a.m.