pub struct SourceEstimate {
pub data: Array2<f64>,
pub n_sources: usize,
pub orientation: SourceOrientation,
}Expand description
Source-space estimate produced by apply_inverse.
Contains source time courses and metadata about the source space.
Fields§
§data: Array2<f64>Source time courses.
Shape depends on PickOri:
PickOri::None/PickOri::Normal→[n_sources, n_times]PickOri::Vector→[n_sources × 3, n_times]
n_sources: usizeNumber of source locations.
orientation: SourceOrientationOrientation mode of the inverse operator.
Trait Implementations§
Source§impl Clone for SourceEstimate
impl Clone for SourceEstimate
Source§fn clone(&self) -> SourceEstimate
fn clone(&self) -> SourceEstimate
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 SourceEstimate
impl RefUnwindSafe for SourceEstimate
impl Send for SourceEstimate
impl Sync for SourceEstimate
impl Unpin for SourceEstimate
impl UnsafeUnpin for SourceEstimate
impl UnwindSafe for SourceEstimate
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