onlinePCA (version 1.3.1)

fd2coef: Compute the coefficients of functional data in a B-spline basis

Description

This function computes the coefficients of functional data in a B-spline basis.

Usage

fd2coef(x, basis, byrow = TRUE)

Value

A matrix of B-spline coefficients stored in the same format (row or columns) as functional data.

Arguments

x

matrix of functional data.

basis

object created by create.basis

.

byrow

are the functional data stored in rows (TRUE) or in columns (FALSE)?

See Also

create.basis, coef2fd

Examples

Run this code
n <- 100 # number of curves
d <- 500 # number of observation points
grid <- (1:d)/d # observation points
p <- 50 # number of B-spline basis functions 

# Simulate Brownian motion
x <- matrix(rnorm(n*d,sd=1/sqrt(d)),n,d)
x <- t(apply(x,1,cumsum))

# Create B-spline basis 
mybasis <- create.basis(grid, p, 1e-4)

# Compute smooth basis coefficients 
beta <- fd2coef(x, mybasis)

# Recover smooth functional data
x.smooth <- coef2fd(beta, mybasis) 
	
# Standard PCA and Functional PCA
pca <- prcomp(x)
fpca <- prcomp(beta)

Run the code above in your browser using DataCamp Workspace