pub struct SymmetricEigen {
pub values: Vec<f64>,
pub vectors: Matrix,
pub sweeps: usize,
pub off_diagonal_norm: f64,
}Fields§
§values: Vec<f64>Ascending eigenvalues. Eigenvectors are corresponding columns.
vectors: Matrix§sweeps: usize§off_diagonal_norm: f64Off-diagonal Frobenius norm in original units; NOT a rigorous error bound.
Trait Implementations§
Source§impl Clone for SymmetricEigen
impl Clone for SymmetricEigen
Source§fn clone(&self) -> SymmetricEigen
fn clone(&self) -> SymmetricEigen
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SymmetricEigen
impl RefUnwindSafe for SymmetricEigen
impl Send for SymmetricEigen
impl Sync for SymmetricEigen
impl Unpin for SymmetricEigen
impl UnsafeUnpin for SymmetricEigen
impl UnwindSafe for SymmetricEigen
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