pub struct PCA {
pub components: Matrix<f64>,
pub mean: Matrix<f64>,
}
Expand description
Returns the n_components
principal axes (rows) and the centred data’s mean.
Fields§
§components: Matrix<f64>
§mean: Matrix<f64>
Implementations§
Auto Trait Implementations§
impl Freeze for PCA
impl RefUnwindSafe for PCA
impl Send for PCA
impl Sync for PCA
impl Unpin for PCA
impl UnwindSafe for PCA
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