R/coef.R

Defines functions coef.greyforecasting

Documented in coef.greyforecasting

#' fetch the parameters in grey forecasting object
#' @param y data sequence
#' @examples
#' g<-gm(y)
#' coef(g)
#' @export
coef.greyforecasting <- function(x){
  cat("parameters a and b are:\n")
  print(x$parameter)
}
exoplanetX/greyforecasting documentation built on Jan. 17, 2022, 6:46 a.m.