Enum wee_matrix::MatNorm [] [src]

pub enum MatNorm {
    InducedL1,
    InducedL2,
    InducedInf,
    Spectral,
    Entrywise(Norm),
    L21,
    Lpq(f64f64),
    Frobenius,
    Max,
    Schatten(Norm),
    Nuclear,
}

Valid matrix norm types

Variants

L1-Induced matrix norm

L2-Induced matrix norm

Infinity-induced matrix norm

Spectral norm (identical to InducedL2 norm)

General entrywise matrix norm, using specified vector norm

L_{2,1} norm (sum of Euclidean norms of the columns of the matrix)

L_{p, q} norm

Frobenius norm (identical to Entrywise(L2) or Lpq(2,2))

Max norm (identifier to Entrywise(Inf))

General Schatten norm with specified vector norm

Nuclear norm (identical to Schatten(L1)

Trait Implementations

impl Debug for MatNorm
[src]

[src]

Formats the value using the given formatter.

impl Clone for MatNorm
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for MatNorm
[src]