pub struct GeometryQualityThresholds {
pub cond_cutoff: f64,
pub gdop_cutoff: f64,
}Expand description
Configurable cutoffs for classify.
The default uses cond_cutoff = 1.0e8 and gdop_cutoff = 10.0.
The condition-number cutoff follows the standard first-order linear-system
error amplifier, where kappa(H) * eps approximates relative numerical
sensitivity. In f64, 1.0e8 is far above ordinary scaling noise but still
below the singular-value rank threshold used by the least-squares covariance
path. The GDOP cutoff sits in the common GNSS screening band around 6 to 20;
10.0 marks a geometry before a DOP-only projection becomes very large.
Fields§
§cond_cutoff: f64Maximum accepted singular-value condition number for a full-rank solve with positive redundancy.
gdop_cutoff: f64Maximum accepted GDOP for a full-rank solve with positive redundancy.
Trait Implementations§
Source§impl Clone for GeometryQualityThresholds
impl Clone for GeometryQualityThresholds
Source§fn clone(&self) -> GeometryQualityThresholds
fn clone(&self) -> GeometryQualityThresholds
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 GeometryQualityThresholds
Source§impl Debug for GeometryQualityThresholds
impl Debug for GeometryQualityThresholds
Source§impl Default for GeometryQualityThresholds
impl Default for GeometryQualityThresholds
Source§impl PartialEq for GeometryQualityThresholds
impl PartialEq for GeometryQualityThresholds
Source§fn eq(&self, other: &GeometryQualityThresholds) -> bool
fn eq(&self, other: &GeometryQualityThresholds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GeometryQualityThresholds
Auto Trait Implementations§
impl Freeze for GeometryQualityThresholds
impl RefUnwindSafe for GeometryQualityThresholds
impl Send for GeometryQualityThresholds
impl Sync for GeometryQualityThresholds
impl Unpin for GeometryQualityThresholds
impl UnsafeUnpin for GeometryQualityThresholds
impl UnwindSafe for GeometryQualityThresholds
Blanket Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Scalar for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.