Enum linxal::types::Error  
                   
                       [−]
                   
               [src]
pub enum Error {
    SVD(SVDError),
    Eigen(EigenError),
    LeastSquares(LeastSquaresError),
    SolveLinear(SolveError),
    QR(QRError),
    LU(LUError),
}Universal linxal error enum
This enum can be used as a catch-all for errors from linxal
computations.
Variants
SVD(SVDError)Eigen(EigenError)LeastSquares(LeastSquaresError)SolveLinear(SolveError)QR(QRError)LU(LUError)Trait Implementations
impl From<SVDError> for Error[src]
impl From<EigenError> for Error[src]
fn from(e: EigenError) -> Error
Performs the conversion.
impl From<LeastSquaresError> for Error[src]
fn from(e: LeastSquaresError) -> Error
Performs the conversion.
impl From<SolveError> for Error[src]
fn from(e: SolveError) -> Error
Performs the conversion.