pub struct EighDecomp<T, R, D0: Dim, D1: Dim> {
pub eigenvalues: Array<R, (D0,)>,
pub eigenvectors: Array<T, (D0, D1)>,
}Expand description
Holds the results of a self-adjoint eigenvalue decomposition.
Self-adjoint eigenvalues are real, while eigenvectors live in the input matrix scalar field.
Fields§
§eigenvalues: Array<R, (D0,)>§eigenvectors: Array<T, (D0, D1)>Auto Trait Implementations§
impl<T, R, D0, D1> Freeze for EighDecomp<T, R, D0, D1>
impl<T, R, D0, D1> RefUnwindSafe for EighDecomp<T, R, D0, D1>where
<D0 as Dim>::Buffer<R, (), Global>: RefUnwindSafe,
<D0 as Dim>::Buffer<T, (D1,), Global>: RefUnwindSafe,
impl<T, R, D0, D1> Send for EighDecomp<T, R, D0, D1>
impl<T, R, D0, D1> Sync for EighDecomp<T, R, D0, D1>
impl<T, R, D0, D1> Unpin for EighDecomp<T, R, D0, D1>
impl<T, R, D0, D1> UnsafeUnpin for EighDecomp<T, R, D0, D1>where
<D0 as Dim>::Buffer<R, (), Global>: UnsafeUnpin,
<D0 as Dim>::Buffer<T, (D1,), Global>: UnsafeUnpin,
impl<T, R, D0, D1> UnwindSafe for EighDecomp<T, R, D0, D1>where
<D0 as Dim>::Buffer<R, (), Global>: UnwindSafe,
<D0 as Dim>::Buffer<T, (D1,), Global>: 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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoCloned<T> for T
impl<T> IntoCloned<T> for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more