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

Try the fda package in your browser

Any scripts or data that you put into this service are public.

fda documentation built on May 29, 2024, 11:26 a.m.