Struct ndarray_linalg::error::NotSquareError[][src]

pub struct NotSquareError {
    pub rows: i32,
    pub cols: i32,
}

Error that matrix is not square

Fields

Methods

impl NotSquareError
[src]

Constructs a new NotSquareError.

Trait Implementations

impl From<NotSquareError> for LinalgError
[src]

Performs the conversion.

impl Debug for NotSquareError
[src]

Formats the value using the given formatter. Read more

impl Display for NotSquareError
[src]

Formats the value using the given formatter. Read more

impl Error for NotSquareError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations