pub struct ConditionMetrics {
pub condition_number: f64,
pub complexity_index: f64,
pub singular: bool,
}Expand description
Condition number (κ₂ = σ_max / σ_min) and complexity index (log₁₀ κ).
Fields§
§condition_number: f64§complexity_index: f64§singular: boolTrait Implementations§
Source§impl Clone for ConditionMetrics
impl Clone for ConditionMetrics
Source§fn clone(&self) -> ConditionMetrics
fn clone(&self) -> ConditionMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ConditionMetrics
Source§impl Debug for ConditionMetrics
impl Debug for ConditionMetrics
Source§impl PartialEq for ConditionMetrics
impl PartialEq for ConditionMetrics
impl StructuralPartialEq for ConditionMetrics
Auto Trait Implementations§
impl Freeze for ConditionMetrics
impl RefUnwindSafe for ConditionMetrics
impl Send for ConditionMetrics
impl Sync for ConditionMetrics
impl Unpin for ConditionMetrics
impl UnsafeUnpin for ConditionMetrics
impl UnwindSafe for ConditionMetrics
Blanket Implementations§
impl<T> Boilerplate for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more