pub struct Compensation {
pub kind: i32,
pub calibrated: bool,
pub data: Vec<f64>,
}Expand description
CTF (Canadian Thin Films) MEG Compensation CTF systems use reference channels to cancel environmental noise. Compensation matrices transform reference channel data to remove artifacts.
Fields§
§kind: i32§calibrated: bool§data: Vec<f64>Implementations§
Source§impl Compensation
impl Compensation
Sourcepub fn grade_name(&self) -> &'static str
pub fn grade_name(&self) -> &'static str
Get human-readable compensation grade name
Trait Implementations§
Source§impl Clone for Compensation
impl Clone for Compensation
Source§fn clone(&self) -> Compensation
fn clone(&self) -> Compensation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Compensation
impl RefUnwindSafe for Compensation
impl Send for Compensation
impl Sync for Compensation
impl Unpin for Compensation
impl UnwindSafe for Compensation
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