pub struct Eigen {
pub eigenvalues: Mat,
pub eigenvectors: Mat,
}Expand description
Result of an eigendecomposition.
Contains eigenvalues as a column vector and eigenvectors as columns of a matrix.
Fields§
§eigenvalues: Mat§eigenvectors: MatAuto Trait Implementations§
impl Freeze for Eigen
impl RefUnwindSafe for Eigen
impl !Send for Eigen
impl !Sync for Eigen
impl Unpin for Eigen
impl UnsafeUnpin for Eigen
impl UnwindSafe for Eigen
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