Enum arrayfire::MatProp [] [src]

#[repr(C)]
pub enum MatProp { NONE, TRANS, CTRANS, UPPER, LOWER, DIAGUNIT, SYM, POSDEF, ORTHOG, TRIDIAG, BLOCKDIAG, }

Helps determine the type of a Matrix

Variants

Default (no-op)

Data needs to be transposed

Data needs to be conjugate transposed

Matrix is upper triangular

Matrix is lower triangular

Matrix diagonal has unitary values

Matrix is symmetric

Matrix is positive definite

Matrix is orthogonal

Matrix is tri-diagonal

Matrix is block-diagonal

Trait Implementations

impl Clone for MatProp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MatProp
[src]

impl Debug for MatProp
[src]

Formats the value using the given formatter.

impl PartialEq for MatProp
[src]

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

This method tests for !=.