Trait MagnitudeCorrection

Source
pub trait MagnitudeCorrection {
    // Required method
    fn correction() -> Self;
}
Expand description

Magnitude Correction

The magnitude correction changes the cut-off point at which an eigenvector belongs to the null-space and its eigenvalue is therefore zero. The correction is multiplied by the floating point epsilon and therefore dependent on the floating type.

Required Methods§

Source

fn correction() -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl MagnitudeCorrection for f32

Source§

fn correction() -> Self

Source§

impl MagnitudeCorrection for f64

Source§

fn correction() -> Self

Implementors§