Enum linxal::eigenvalues::types::EigenError
[−]
[src]
pub enum EigenError {
NotSquare,
BadLayout,
IllegalParameter(i32),
Failed,
}Errors from an eigenvalue problem.
Variants
NotSquareThe input matrix is not square.
BadLayoutThe input matrix does not have a conforming layout.
IllegalParameter(i32)The parameter to the LAPACKE method was invalid.
This error should not occur in user-facing code.
FailedEigenvalues could not be found.
Trait Implementations
impl Debug for EigenError[src]
impl Clone for EigenError[src]
fn clone(&self) -> EigenError
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for EigenError[src]
fn eq(&self, __arg_0: &EigenError) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &EigenError) -> bool
This method tests for !=.