pub enum PickOri {
None,
Normal,
Vector,
}Expand description
How to handle source orientations in free-orientation inverse solutions.
Only relevant when the inverse operator has SourceOrientation::Free.
For fixed-orientation operators, all variants behave identically.
Variants§
None
Combine XYZ components as √(x² + y² + z²) per source (default).
Normal
Extract only the component normal to the cortical surface. Requires a free-orientation inverse operator.
Vector
Return all three orientation components without combining.
Output has shape [n_sources × 3, n_times].
Trait Implementations§
impl Copy for PickOri
impl Eq for PickOri
impl StructuralPartialEq for PickOri
Auto Trait Implementations§
impl Freeze for PickOri
impl RefUnwindSafe for PickOri
impl Send for PickOri
impl Sync for PickOri
impl Unpin for PickOri
impl UnsafeUnpin for PickOri
impl UnwindSafe for PickOri
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<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more