[][src]Struct nalgebra_lapack::Schur

pub struct Schur<N: Scalar, D: Dim> where
    DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, 
{ /* fields omitted */ }

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]

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]

Computes the complex eigenvalues of the decomposed matrix.

Trait Implementations

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]

impl<N: Clone + Scalar, D: Clone + Dim> Clone for Schur<N, D> where
    DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, 
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: Debug + Scalar, D: Debug + Dim> Debug for Schur<N, D> where
    DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, 
[src]

Auto Trait Implementations

impl<N, D> !Send for Schur<N, D>

impl<N, D> !Sync for Schur<N, D>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self