#[repr(C)]pub struct gauss_t {
pub sqrt_det: f64,
pub gauss_sig_1: point3d_t,
pub gauss_sig_2: point3d_t,
pub gauss_sig_3: point3d_t,
}Expand description
Provides optional extra data for gr_volume_interp_gauss
Fields§
§sqrt_det: f64< Square root of determinant of covariance matrix
gauss_sig_1: point3d_t< \f$\Sigma^{-\frac{1}{2}}\f$ encoded as three column vectors
gauss_sig_2: point3d_t< \f$\Sigma^{-\frac{1}{2}}\f$ encoded as three column vectors
gauss_sig_3: point3d_t< \f$\Sigma^{-\frac{1}{2}}\f$ encoded as three column vectors
Trait Implementations§
Auto Trait Implementations§
impl Freeze for gauss_t
impl RefUnwindSafe for gauss_t
impl Send for gauss_t
impl Sync for gauss_t
impl Unpin for gauss_t
impl UnwindSafe for gauss_t
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