pub enum HrfModel {
Spm,
SpmDerivative,
SpmDerivativeDispersion,
Glover,
GloverDerivative,
GloverDerivativeDispersion,
Fir,
None,
}Expand description
Hemodynamic Response Function (HRF) model type.
Specifies which HRF basis set to use for convolving event regressors in fMRI statistical modeling. The SPM and Glover forms are double-gamma functions with different parameters; each can include time and/or dispersion derivative basis functions.
The FIR (Finite Impulse Response) model uses a set of delta functions at specified delays, making no assumptions about HRF shape.
Variants§
Spm
SpmDerivative
SpmDerivativeDispersion
Glover
GloverDerivative
GloverDerivativeDispersion
Fir
None
Implementations§
Trait Implementations§
impl Eq for HrfModel
impl StructuralPartialEq for HrfModel
Auto Trait Implementations§
impl Freeze for HrfModel
impl RefUnwindSafe for HrfModel
impl Send for HrfModel
impl Sync for HrfModel
impl Unpin for HrfModel
impl UnsafeUnpin for HrfModel
impl UnwindSafe for HrfModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.