Struct nalgebra_lapack::SymmetricEigen [] [src]

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

Eigendecomposition of a real square symmetric matrix with real eigenvalues.

Fields

The eigenvectors of the decomposed matrix.

The unsorted eigenvalues of the decomposed matrix.

Methods

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

[src]

Computes the eigenvalues and eigenvectors of the symmetric matrix m.

Only the lower-triangular part of m is read. If eigenvectors is false then, the eigenvectors are not computed explicitly. Panics if the method did not converge.

[src]

Computes the eigenvalues and eigenvectors of the symmetric matrix m.

Only the lower-triangular part of m is read. If eigenvectors is false then, the eigenvectors are not computed explicitly. Returns None if the method did not converge.

[src]

Computes only the eigenvalues of the input matrix.

Panics if the method does not converge.

[src]

Computes only the eigenvalues of the input matrix.

Returns None if the method does not converge.

[src]

The determinant of the decomposed matrix.

[src]

Rebuild the original matrix.

This is useful if some of the eigenvalues have been manually modified.

Trait Implementations

impl<N: Clone + Scalar, D: Clone + Dim> Clone for SymmetricEigen<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 SymmetricEigen<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 SymmetricEigen<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, D>,
    MatrixN<N, D>: Copy,
    VectorN<N, D>: Copy
[src]

Auto Trait Implementations

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

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