Skip to contents

create_bspline_basis

Usage

create_bspline_basis(start, end, nbasis = 10, norder = 4)

Arguments

start

start time

end

end time

nbasis

number of basis functions, default 10

norder

order of the basis function, default cubic splines 4

Value

a basis fd object

Author

Francois Bassac

Examples

b0 = create_bspline_basis(0, 10, 10, 4)
plot(b0)


b1 = create_bspline_basis(0, 10, 10, 2)
plot(b1)


b2 = create_bspline_basis(0, 10, 10, 1)
plot(b1)