[−][src]Struct nalgebra_lapack::Schur
Eigendecomposition of a real square matrix with real eigenvalues.
Methods
impl<N: SchurScalar + RealField, D: Dim> Schur<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>, [src]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>,
pub fn new(m: MatrixN<N, D>) -> Self[src]
Computes the eigenvalues and real Schur form of the matrix m.
Panics if the method did not converge.
pub fn try_new(m: MatrixN<N, D>) -> Option<Self>[src]
Computes the eigenvalues and real Schur form of the matrix m.
Returns None if the method did not converge.
pub fn unpack(self) -> (MatrixN<N, D>, MatrixN<N, D>)[src]
Retrieves the unitary matrix Q and the upper-quasitriangular matrix T such that the
decomposed matrix equals Q * T * Q.transpose().
pub fn eigenvalues(&self) -> Option<VectorN<N, D>>[src]
Computes the real eigenvalues of the decomposed matrix.
Return None if some eigenvalues are complex.
pub fn complex_eigenvalues(&self) -> VectorN<Complex<N>, D> where
DefaultAllocator: Allocator<Complex<N>, D>, [src]
DefaultAllocator: Allocator<Complex<N>, D>,
Computes the complex eigenvalues of the decomposed matrix.
Trait Implementations
impl<N: Clone + Scalar, D: Clone + Dim> Clone for Schur<N, D> where
DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, [src]
DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>,
fn clone(&self) -> Schur<N, D>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<N: Scalar, D: Dim> Copy for Schur<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>,
MatrixN<N, D>: Copy,
VectorN<N, D>: Copy, [src]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>,
MatrixN<N, D>: Copy,
VectorN<N, D>: Copy,
impl<N: Debug + Scalar, D: Debug + Dim> Debug for Schur<N, D> where
DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, [src]
DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>,
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> From for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<SS, SP> SupersetOf for SP where
SS: SubsetOf<SP>, [src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>[src]
fn is_in_subset(&self) -> bool[src]
unsafe fn to_subset_unchecked(&self) -> SS[src]
fn from_subset(element: &SS) -> SP[src]
impl<T> Same for T
type Output = T
Should always be Self