pub struct SignTuple {
pub norm: f64,
pub drift: f64,
pub slew: f64,
}Expand description
Residual sign tuple σ(k) = (‖r‖, ṙ, r̈) Paper §5.3
Fields§
§norm: f64‖r(k)‖ — instantaneous deviation magnitude
drift: f64ṙ(k) — finite-difference drift rate (window-to-window)
slew: f64r̈(k) — second difference / slew (curvature of trajectory)
Implementations§
Trait Implementations§
impl Copy for SignTuple
impl StructuralPartialEq for SignTuple
Auto Trait Implementations§
impl Freeze for SignTuple
impl RefUnwindSafe for SignTuple
impl Send for SignTuple
impl Sync for SignTuple
impl Unpin for SignTuple
impl UnsafeUnpin for SignTuple
impl UnwindSafe for SignTuple
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