pub struct GageRRInput {
pub measurements: Vec<Vec<Vec<f64>>>,
pub tolerance: Option<f64>,
}Expand description
Input data for a Gage R&R study.
The measurements field is a 3D array indexed as [part][operator][trial].
All parts must have the same number of operators, and all operator×part cells
must have the same number of trials.
Fields§
§measurements: Vec<Vec<Vec<f64>>>3D measurement data: measurements[part][operator][trial].
tolerance: Option<f64>Process tolerance (USL − LSL), optional for %Tolerance calculation.
Auto Trait Implementations§
impl Freeze for GageRRInput
impl RefUnwindSafe for GageRRInput
impl Send for GageRRInput
impl Sync for GageRRInput
impl Unpin for GageRRInput
impl UnsafeUnpin for GageRRInput
impl UnwindSafe for GageRRInput
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