pub struct EigenDecomposition {
pub eigenvalues: Vec<f64>,
pub eigenvectors: Vec<Vec<f64>>,
}Expand description
Result of an eigenvalue decomposition.
Fields§
§eigenvalues: Vec<f64>Computed eigenvalues, ordered according to the requested criterion.
eigenvectors: Vec<Vec<f64>>Corresponding eigenvectors (one Vec<f64> per eigenvalue, each of
length n).
Trait Implementations§
Source§impl Clone for EigenDecomposition
impl Clone for EigenDecomposition
Source§fn clone(&self) -> EigenDecomposition
fn clone(&self) -> EigenDecomposition
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 EigenDecomposition
impl RefUnwindSafe for EigenDecomposition
impl Send for EigenDecomposition
impl Sync for EigenDecomposition
impl Unpin for EigenDecomposition
impl UnsafeUnpin for EigenDecomposition
impl UnwindSafe for EigenDecomposition
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