pub struct IcaResult {
pub sources: Vec<Vec<f64>>,
}Expand description
Outcome of a FastICA fit.
Fields§
§sources: Vec<Vec<f64>>The recovered independent sources, one row per observation and one column per component, each column zero-mean and unit-variance.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IcaResult
impl RefUnwindSafe for IcaResult
impl Send for IcaResult
impl Sync for IcaResult
impl Unpin for IcaResult
impl UnsafeUnpin for IcaResult
impl UnwindSafe for IcaResult
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