R/coef.R

Defines functions coefficients.Taylor coef.Taylor coefficients.fdSmooth coef.fdSmooth coefficients.fdPar coef.fdPar coefficients.fd coef.fd coefficients

Documented in coef.fd coef.fdPar coef.fdSmooth coefficients.fd coefficients.fdPar coefficients.fdSmooth

coefficients <- function(object, ...)UseMethod('coef')

coef.fd <- function(object, ...) object$coef
coefficients.fd <- function(object, ...) object$coef

coef.fdPar <- function(object, ...) object$fd$coef
coefficients.fdPar <- function(object, ...) object$fd$coef

coef.fdSmooth <- function(object, ...) object$fd$coef
coefficients.fdSmooth <- function(object, ...) object$fd$coef

coef.Taylor <- function(object, ...) object$coef
coefficients.Taylor <- function(object, ...) object$coef
JamesRamsay5/fda documentation built on Nov. 30, 2024, 5:12 a.m.