pub struct EigGeneralizedOwned<T: Scalar> {
pub alpha: Vec<T::Complex>,
pub beta: Vec<T::Complex>,
pub vr: Option<Vec<T::Complex>>,
pub vl: Option<Vec<T::Complex>>,
}
Expand description
Owned result of eigenvalue problem by EigGeneralizedWork::eval
Fields§
§alpha: Vec<T::Complex>
Eigenvalues
beta: Vec<T::Complex>
§vr: Option<Vec<T::Complex>>
Right eigenvectors
vl: Option<Vec<T::Complex>>
Left eigenvectors
Implementations§
Trait Implementations§
Source§impl<T: Clone + Scalar> Clone for EigGeneralizedOwned<T>where
T::Complex: Clone,
impl<T: Clone + Scalar> Clone for EigGeneralizedOwned<T>where
T::Complex: Clone,
Source§fn clone(&self) -> EigGeneralizedOwned<T>
fn clone(&self) -> EigGeneralizedOwned<T>
Returns a copy 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 moreimpl<T: Scalar> StructuralPartialEq for EigGeneralizedOwned<T>
Auto Trait Implementations§
impl<T> Freeze for EigGeneralizedOwned<T>
impl<T> RefUnwindSafe for EigGeneralizedOwned<T>where
<T as Scalar>::Complex: RefUnwindSafe,
impl<T> Send for EigGeneralizedOwned<T>where
<T as Scalar>::Complex: Send,
impl<T> Sync for EigGeneralizedOwned<T>where
<T as Scalar>::Complex: Sync,
impl<T> Unpin for EigGeneralizedOwned<T>where
<T as Scalar>::Complex: Unpin,
impl<T> UnwindSafe for EigGeneralizedOwned<T>where
<T as Scalar>::Complex: UnwindSafe,
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