Enum ndarray_linalg::layout::MatrixLayout
[−]
[src]
pub enum MatrixLayout {
C((Row, LDA)),
F((Col, LDA)),
}Variants
C((Row, LDA))F((Col, LDA))
Methods
impl MatrixLayout[src]
fn size(&self) -> (Row, Col)[src]
fn resized(&self, row: Row, col: Col) -> MatrixLayout[src]
fn lda(&self) -> LDA[src]
fn len(&self) -> LEN[src]
fn lapacke_layout(&self) -> Layout[src]
fn same_order(&self, other: &MatrixLayout) -> bool[src]
fn as_shape(&self) -> Shape<Ix2>[src]
fn toggle_order(&self) -> Self[src]
Trait Implementations
impl Debug for MatrixLayout[src]
impl Clone for MatrixLayout[src]
fn clone(&self) -> MatrixLayout[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for MatrixLayout[src]
impl PartialEq for MatrixLayout[src]
fn eq(&self, __arg_0: &MatrixLayout) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &MatrixLayout) -> bool[src]
This method tests for !=.