Struct rgsl::types::eigen_symmetric_workspace::EigenHermitianVWorkspace [] [src]

pub struct EigenHermitianVWorkspace { /* fields omitted */ }

Methods

impl EigenHermitianVWorkspace
[src]

This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n complex hermitian matrices. The size of the workspace is O(5n).

This function computes the eigenvalues and eigenvectors of the complex hermitian matrix A. Additional workspace of the appropriate size must be provided in self. The diagonal and lower triangular part of A are destroyed during the computation, but the strict upper triangular part is not referenced. The imaginary parts of the diagonal are assumed to be zero and are not referenced. The eigenvalues are stored in the vector eval and are unordered. The corresponding complex eigenvectors are stored in the columns of the matrix evec. For example, the eigenvector in the first column corresponds to the first eigenvalue. The eigenvectors are guaranteed to be mutually orthogonal and normalised to unit magnitude.

Trait Implementations

impl Drop for EigenHermitianVWorkspace
[src]

A method called when the value goes out of scope. Read more