pub struct MultiTruingReport {Show 14 fields
pub fitted_mv_fps: f64,
pub fitted_bc: f64,
pub bc_input: f64,
pub bc_fitted: bool,
pub observations: Vec<TruingObservation>,
pub predicted: Vec<f64>,
pub residuals: Vec<f64>,
pub rms: f64,
pub iterations: usize,
pub converged: bool,
pub sensitivity_ratio: f64,
pub condition_number: f64,
pub quality: String,
pub reason: String,
}Expand description
Final report produced by a multi-observation truing fit.
Fields§
§fitted_mv_fps: f64§fitted_bc: f64§bc_input: f64§bc_fitted: bool§observations: Vec<TruingObservation>§predicted: Vec<f64>§residuals: Vec<f64>§rms: f64§iterations: usize§converged: bool§sensitivity_ratio: f64§condition_number: f64§quality: String§reason: StringTrait Implementations§
Source§impl Clone for MultiTruingReport
impl Clone for MultiTruingReport
Source§fn clone(&self) -> MultiTruingReport
fn clone(&self) -> MultiTruingReport
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 moreAuto Trait Implementations§
impl Freeze for MultiTruingReport
impl RefUnwindSafe for MultiTruingReport
impl Send for MultiTruingReport
impl Sync for MultiTruingReport
impl Unpin for MultiTruingReport
impl UnsafeUnpin for MultiTruingReport
impl UnwindSafe for MultiTruingReport
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<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.