R/general_functions.R
create_bspline_basis.Rd
create_bspline_basis
create_bspline_basis(start, end, nbasis = 10, norder = 4)
start time
end time
number of basis functions, default 10
order of the basis function, default cubic splines 4
a basis fd object
Francois Bassac
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)