pub struct GPSVelocityMeasurement {
pub northward_velocity: f64,
pub eastward_velocity: f64,
pub downward_velocity: f64,
pub horizontal_noise_std: f64,
pub vertical_noise_std: f64,
}
Expand description
GPS Velocity measurement model
Fields§
§northward_velocity: f64
Northward velocity in m/s
eastward_velocity: f64
Eastward velocity in m/s
downward_velocity: f64
Downward velocity in m/s
horizontal_noise_std: f64
noise standard deviation in m/s
vertical_noise_std: f64
vertical noise standard deviation in m/s
Trait Implementations§
Source§impl Clone for GPSVelocityMeasurement
impl Clone for GPSVelocityMeasurement
Source§fn clone(&self) -> GPSVelocityMeasurement
fn clone(&self) -> GPSVelocityMeasurement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GPSVelocityMeasurement
impl Debug for GPSVelocityMeasurement
Source§impl Default for GPSVelocityMeasurement
impl Default for GPSVelocityMeasurement
Source§fn default() -> GPSVelocityMeasurement
fn default() -> GPSVelocityMeasurement
Returns the “default value” for a type. Read more
Source§impl MeasurementModel for GPSVelocityMeasurement
impl MeasurementModel for GPSVelocityMeasurement
Source§fn get_dimension(&self) -> usize
fn get_dimension(&self) -> usize
Get the dimensionality of the measurement vector.
Source§fn get_vector(&self) -> DVector<f64>
fn get_vector(&self) -> DVector<f64>
Get the measurement vector
Auto Trait Implementations§
impl Freeze for GPSVelocityMeasurement
impl RefUnwindSafe for GPSVelocityMeasurement
impl Send for GPSVelocityMeasurement
impl Sync for GPSVelocityMeasurement
impl Unpin for GPSVelocityMeasurement
impl UnwindSafe for GPSVelocityMeasurement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.