Struct wee_matrix::Eigen [] [src]

pub struct Eigen<T, U> { /* fields omitted */ }

Eigenvalue decomposition structure for type T, with eigenvalue storage structure U.

Methods

impl Eigen<Matrix, Vec<f64>>
[src]

[src]

Retrieve references to the eigenvalue lists (real and imaginary)

[src]

Returns true if this eigvenvalue decomposition contains any imaginary eigenvalues

[src]

Retrieve a reference to the real-valued eigenvalue list

[src]

Retrieve a reference to the imaginary-valued eigenvalue list

[src]

Retrieve a reference to the left eigenvector matrix (if produced)

[src]

Retrieve a reference to the right eigenvector matrix (if produced)

Trait Implementations

impl<T: Debug, U: Debug> Debug for Eigen<T, U>
[src]

[src]

Formats the value using the given formatter.

impl<T: Clone, U: Clone> Clone for Eigen<T, U>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Compose<Matrix> for Eigen<Matrix, Vec<f64>>
[src]

[src]

Generate a matrix from this decomposition.