pub struct Calibration {
pub abscissa: Vec<f64>,
pub ordinate: Vec<f64>,
}
Expand description
A container for calibration information.
Fields§
§abscissa: Vec<f64>
The abscissa can be assumed to monotonically increase. These are in pairs with the ordinates.
ordinate: Vec<f64>
Ordinate calibration values.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Calibration
impl RefUnwindSafe for Calibration
impl Send for Calibration
impl Sync for Calibration
impl Unpin for Calibration
impl UnwindSafe for Calibration
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