R/coef.R

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

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

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 2, 2019, 5:12 p.m.