Enum linxal::types::error::GenerateError [] [src]

pub enum GenerateError {
    NotSquare,
    NotEnoughValues,
    UnequalBands,
    InvalidPacking,
    InvalidRank,
    IllegalParameter(i32),
}

Errors when attempting to generate a random matrix.

Variants

The matrix doesn't have square dimensions, but a square dimension is required for a certain operation.

Incorrect number of eigenvalues or singular values

The matrix is square, but the number of bands is not the same on both sides.

The matrix is not symmetric, but a non-Full packing was used.

The rank is larger than the size of the matrix can support.

Invalid Parameter

Trait Implementations

impl PartialEq for GenerateError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for GenerateError
[src]

impl Debug for GenerateError
[src]

Formats the value using the given formatter.

impl Clone for GenerateError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for GenerateError
[src]