Struct nalgebra_lapack::Eigen [] [src]

pub struct Eigen<N: Scalar, D: Dim> where
    DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>, 
{ pub eigenvalues: VectorN<N, D>, pub eigenvectors: Option<MatrixN<N, D>>, pub left_eigenvectors: Option<MatrixN<N, D>>, }

Eigendecomposition of a real square matrix with real eigenvalues.

Fields

The eigenvalues of the decomposed matrix.

The (right) eigenvectors of the decomposed matrix.

The left eigenvectors of the decomposed matrix.

Methods

impl<N: EigenScalar + Real, D: Dim> Eigen<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>, 
[src]

[src]

Computes the eigenvalues and eigenvectors of the square matrix m.

If eigenvectors is false then, the eigenvectors are not computed explicitly.

[src]

The complex eigenvalues of the given matrix.

Panics if the eigenvalue computation does not converge.

[src]

The determinant of the decomposed matrix.

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

impl<N: Scalar, D: Dim> Copy for Eigen<N, D> where
    DefaultAllocator: Allocator<N, D> + Allocator<N, D, D>,
    VectorN<N, D>: Copy,
    MatrixN<N, D>: Copy
[src]

Auto Trait Implementations

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

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