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

pub struct EigenGenSymmVWorkspace {
    // some fields omitted
}

Methods

impl EigenGenSymmVWorkspace
[src]

fn new(n: usize) -> Option<EigenGenSymmVWorkspace>

This function allocates a workspace for computing eigenvalues and eigenvectors of n-by-n real generalized symmetric-definite eigensystems. The size of the workspace is O(4n).

fn gensymmv(&self, A: &MatrixF64, B: &MatrixF64, eval: &VectorF64, evec: &MatrixF64) -> Value

This function computes the eigenvalues and eigenvectors of the real generalized symmetric-definite matrix pair (A, B), and stores them in eval and evec respectively. The computed eigenvectors are normalized to have unit magnitude. On output, B contains its Cholesky decomposition and A is destroyed.

Trait Implementations

impl Drop for EigenGenSymmVWorkspace
[src]

fn drop(&mut self)

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