Enum arrayfire::NormType [] [src]

#[repr(C)]
pub enum NormType { VECTOR_1, VECTOR_INF, VECTOR_2, VECTOR_P, MATRIX_1, MATRIX_INF, MATRIX_2, MATRIX_L_PQ, }

Norm type

Variants

Treats input as a vector and return sum of absolute values

Treats input as vector and return max of absolute values

Treats input as vector and returns euclidean norm

Treats input as vector and returns the p-norm

Return the max of column sums

Return the max of row sums

Returns the max singular value (Currently not supported)

Returns Lpq-norm

Trait Implementations

impl Clone for NormType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NormType
[src]

impl Debug for NormType
[src]

Formats the value using the given formatter.

impl PartialEq for NormType
[src]

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

This method tests for !=.