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

Trait Implementations

impl From<SVDError> for Error
[src]

Performs the conversion.

impl From<EigenError> for Error
[src]

Performs the conversion.

impl From<LeastSquaresError> for Error
[src]

Performs the conversion.

impl From<SolveError> for Error
[src]

Performs the conversion.

impl From<QRError> for Error
[src]

Performs the conversion.

impl From<LUError> for Error
[src]

Performs the conversion.