pub struct TruingGaussianApproximationV1 {
pub covariance: TruingCovarianceV1,
pub muzzle_velocity_interval_95: GaussianIntervalV1,
pub ballistic_coefficient_interval_95: GaussianIntervalV1,
pub mv_bc_correlation: f64,
pub scaled_information_condition_number: f64,
}Expand description
Successful local Gaussian approximation around the MAP.
Fields§
§covariance: TruingCovarianceV1§muzzle_velocity_interval_95: GaussianIntervalV1§ballistic_coefficient_interval_95: GaussianIntervalV1§mv_bc_correlation: f64Posterior correlation between fitted MV and BC.
scaled_information_condition_number: f64Condition number of the posterior information matrix in the documented
scaled coordinates (100 fps, 0.1 BC).
Trait Implementations§
Source§impl Clone for TruingGaussianApproximationV1
impl Clone for TruingGaussianApproximationV1
Source§fn clone(&self) -> TruingGaussianApproximationV1
fn clone(&self) -> TruingGaussianApproximationV1
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for TruingGaussianApproximationV1
impl PartialEq for TruingGaussianApproximationV1
Source§fn eq(&self, other: &TruingGaussianApproximationV1) -> bool
fn eq(&self, other: &TruingGaussianApproximationV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TruingGaussianApproximationV1
impl StructuralPartialEq for TruingGaussianApproximationV1
Auto Trait Implementations§
impl Freeze for TruingGaussianApproximationV1
impl RefUnwindSafe for TruingGaussianApproximationV1
impl Send for TruingGaussianApproximationV1
impl Sync for TruingGaussianApproximationV1
impl Unpin for TruingGaussianApproximationV1
impl UnwindSafe for TruingGaussianApproximationV1
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,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§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 more§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).§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.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.