[][src]Struct adskalman::StateAndCovariance

pub struct StateAndCovariance<R, SS> where
    R: RealField,
    SS: DimName,
    DefaultAllocator: Allocator<R, SS, SS>,
    DefaultAllocator: Allocator<R, SS>, 
{ /* fields omitted */ }

State and covariance pair for a given estimate

Implementations

impl<R, SS> StateAndCovariance<R, SS> where
    R: RealField,
    SS: DimName,
    DefaultAllocator: Allocator<R, SS, SS>,
    DefaultAllocator: Allocator<R, SS>, 
[src]

pub fn new(state: VectorN<R, SS>, covariance: MatrixN<R, SS>) -> Self[src]

Create a new StateAndCovariance.

It is assumed that the covariance matrix is symmetric and positive semi-definite.

pub fn state(&self) -> &VectorN<R, SS>[src]

pub fn covariance(&self) -> &MatrixN<R, SS>[src]

Trait Implementations

impl<R: Clone, SS: Clone> Clone for StateAndCovariance<R, SS> where
    R: RealField,
    SS: DimName,
    DefaultAllocator: Allocator<R, SS, SS>,
    DefaultAllocator: Allocator<R, SS>, 
[src]

impl<R: Debug, SS: Debug> Debug for StateAndCovariance<R, SS> where
    R: RealField,
    SS: DimName,
    DefaultAllocator: Allocator<R, SS, SS>,
    DefaultAllocator: Allocator<R, SS>, 
[src]

Auto Trait Implementations

impl<R, SS> !RefUnwindSafe for StateAndCovariance<R, SS>

impl<R, SS> !Send for StateAndCovariance<R, SS>

impl<R, SS> !Sync for StateAndCovariance<R, SS>

impl<R, SS> !Unpin for StateAndCovariance<R, SS>

impl<R, SS> !UnwindSafe for StateAndCovariance<R, SS>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,