pub struct GeneralEvdResult<T> {
pub eigenvalues: Vec<Eigenvalue<T>>,
pub eigenvectors_real: Option<Array2<T>>,
pub eigenvectors_imag: Option<Array2<T>>,
pub left_eigenvectors_real: Option<Array2<T>>,
pub left_eigenvectors_imag: Option<Array2<T>>,
}Expand description
Result of general eigenvalue decomposition.
Fields§
§eigenvalues: Vec<Eigenvalue<T>>Eigenvalues (real and imaginary parts)
eigenvectors_real: Option<Array2<T>>Right eigenvectors (real parts), if computed
eigenvectors_imag: Option<Array2<T>>Right eigenvectors (imaginary parts), if computed
left_eigenvectors_real: Option<Array2<T>>Left eigenvectors (real parts), if computed
left_eigenvectors_imag: Option<Array2<T>>Left eigenvectors (imaginary parts), if computed
Trait Implementations§
Source§impl<T: Clone> Clone for GeneralEvdResult<T>
impl<T: Clone> Clone for GeneralEvdResult<T>
Source§fn clone(&self) -> GeneralEvdResult<T>
fn clone(&self) -> GeneralEvdResult<T>
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<T> Freeze for GeneralEvdResult<T>
impl<T> RefUnwindSafe for GeneralEvdResult<T>where
T: RefUnwindSafe,
impl<T> Send for GeneralEvdResult<T>where
T: Send,
impl<T> Sync for GeneralEvdResult<T>where
T: Sync,
impl<T> Unpin for GeneralEvdResult<T>where
T: Unpin,
impl<T> UnwindSafe for GeneralEvdResult<T>where
T: UnwindSafe + RefUnwindSafe,
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