B-spline HRF (hemodynamic response function)
hrf_bspline.Rd
The `hrf_bspline` function computes the B-spline representation of an HRF (hemodynamic response function) at given time points `t`.
Arguments
- t
A vector of time points.
- span
A numeric value representing the temporal window over which the basis set spans. Default value is 20.
- N
An integer representing the number of basis functions. Default value is 5.
- degree
An integer representing the degree of the spline. Default value is 3.
- ...
Additional arguments passed to `splines::bs`.
See also
Other hrf_functions:
hrf_basis_lwu()
,
hrf_gamma()
,
hrf_gaussian()
,
hrf_inv_logit()
,
hrf_lwu()
,
hrf_mexhat()
,
hrf_sine()
,
hrf_spmg1()
,
hrf_time()
Examples
# Compute the B-spline HRF representation for time points from 0 to 20 with 0.5 increments
hrfb <- hrf_bspline(seq(0, 20, by = .5), N = 4, degree = 2)