pub struct EigGeneralizedRef<'work, T: Scalar> {
pub alpha: &'work [T::Complex],
pub beta: &'work [T::Complex],
pub vr: Option<&'work [T::Complex]>,
pub vl: Option<&'work [T::Complex]>,
}
Expand description
Reference result of eigenvalue problem by EigGeneralizedWork::calc
Fields§
§alpha: &'work [T::Complex]
Eigenvalues
beta: &'work [T::Complex]
§vr: Option<&'work [T::Complex]>
Right eigenvectors
vl: Option<&'work [T::Complex]>
Left eigenvectors
Trait Implementations§
Source§impl<'work, T: Clone + Scalar> Clone for EigGeneralizedRef<'work, T>where
T::Complex: Clone,
impl<'work, T: Clone + Scalar> Clone for EigGeneralizedRef<'work, T>where
T::Complex: Clone,
Source§fn clone(&self) -> EigGeneralizedRef<'work, T>
fn clone(&self) -> EigGeneralizedRef<'work, 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 moreSource§impl<'work, T: PartialEq + Scalar> PartialEq for EigGeneralizedRef<'work, T>where
T::Complex: PartialEq,
impl<'work, T: PartialEq + Scalar> PartialEq for EigGeneralizedRef<'work, T>where
T::Complex: PartialEq,
impl<'work, T: Scalar> StructuralPartialEq for EigGeneralizedRef<'work, T>
Auto Trait Implementations§
impl<'work, T> Freeze for EigGeneralizedRef<'work, T>
impl<'work, T> RefUnwindSafe for EigGeneralizedRef<'work, T>where
<T as Scalar>::Complex: RefUnwindSafe,
impl<'work, T> Send for EigGeneralizedRef<'work, T>where
<T as Scalar>::Complex: Sync,
impl<'work, T> Sync for EigGeneralizedRef<'work, T>where
<T as Scalar>::Complex: Sync,
impl<'work, T> Unpin for EigGeneralizedRef<'work, T>
impl<'work, T> UnwindSafe for EigGeneralizedRef<'work, T>where
<T as Scalar>::Complex: 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