pub struct SchurDecomp<T, D0: Dim, D1: Dim> {
pub t: Array<T, (D0, D1)>,
pub z: Array<T, (D0, D1)>,
}Expand description
Holds the results of a Schur decomposition: A = Z * T * Z^H where Z is unitary and T is upper-triangular (complex) or quasi-upper triangular (real)
Fields§
§t: Array<T, (D0, D1)>Schur form T (upper-triangular for complex, quasi-upper triangular for real)
z: Array<T, (D0, D1)>Unitary Schur transformation matrix Z
Auto Trait Implementations§
impl<T, D0, D1> Freeze for SchurDecomp<T, D0, D1>
impl<T, D0, D1> RefUnwindSafe for SchurDecomp<T, D0, D1>
impl<T, D0, D1> Send for SchurDecomp<T, D0, D1>
impl<T, D0, D1> Sync for SchurDecomp<T, D0, D1>
impl<T, D0, D1> Unpin for SchurDecomp<T, D0, D1>
impl<T, D0, D1> UnsafeUnpin for SchurDecomp<T, D0, D1>
impl<T, D0, D1> UnwindSafe for SchurDecomp<T, D0, D1>
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