Trait ndarray_linalg::layout::AllocatedArray [−][src]
pub trait AllocatedArray {
type Elem;
fn layout(&self) -> Result<MatrixLayout>;
fn square_layout(&self) -> Result<MatrixLayout>;
fn ensure_square(&self) -> Result<()>;
fn as_allocated(&self) -> Result<&[Self::Elem]>;
}Associated Types
Required methods
fn layout(&self) -> Result<MatrixLayout>
fn square_layout(&self) -> Result<MatrixLayout>
fn ensure_square(&self) -> Result<()>
fn ensure_square(&self) -> Result<()>
Returns Ok iff the matrix is square (without computing the layout).