pub struct NormalizedData {
pub transmission: Array3<f64>,
pub uncertainty: Array3<f64>,
}Expand description
Result of normalization: transmission and its uncertainty.
Fields§
§transmission: Array3<f64>Transmission values, shape (n_tof, height, width).
uncertainty: Array3<f64>Uncertainty on transmission, shape (n_tof, height, width).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NormalizedData
impl RefUnwindSafe for NormalizedData
impl Send for NormalizedData
impl Sync for NormalizedData
impl Unpin for NormalizedData
impl UnsafeUnpin for NormalizedData
impl UnwindSafe for NormalizedData
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