Enum russell_lab::EnumMatrixNorm[][src]

pub enum EnumMatrixNorm {
    One,
    Inf,
    Fro,
    Max,
}
Expand description

Options to compute matrix norm

Variants

One

1-norm

‖a‖_1 = max_j ( Σ_i |aᵢⱼ| )

Inf

inf-norm

‖a‖_∞ = max_i ( Σ_j |aᵢⱼ| )

Fro

Frobenius-norm (2-norm)

‖a‖_F = sqrt(Σ_i Σ_j aᵢⱼ⋅aᵢⱼ) == ‖a‖_2

Max

max-norm

‖a‖_max = max_ij ( |aᵢⱼ| )

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.