[][src]Struct kf::Filter

pub struct Filter<T, DimZ, DimX> where
    T: RealField,
    DimZ: Dim + DimName,
    DimX: Dim + DimName,
    DefaultAllocator: Allocator<T, DimX> + Allocator<T, DimX, DimX> + Allocator<T, DimZ, DimX> + Allocator<T, DimZ, DimZ>, 
{ /* fields omitted */ }

Implementations

impl<T, DimZ, DimX> Filter<T, DimZ, DimX> where
    T: RealField,
    DimZ: Dim + DimName,
    DimX: Dim + DimName,
    DefaultAllocator: Allocator<T, DimX> + Allocator<T, DimZ> + Allocator<T, DimX, DimX> + Allocator<T, DimX, DimZ> + Allocator<T, DimZ, DimX> + Allocator<T, DimZ, DimZ>, 
[src]

pub fn new(
    x: VectorN<T, DimX>,
    p: MatrixN<T, DimX>,
    f: MatrixN<T, DimX>,
    r: MatrixN<T, DimZ>,
    h: MatrixMN<T, DimZ, DimX>,
    q: MatrixN<T, DimX>
) -> Filter<T, DimZ, DimX>
[src]

pub fn run(
    &mut self,
    z: VectorN<T, DimZ>
) -> Result<(VectorN<T, DimX>, MatrixN<T, DimX>, VectorN<T, DimZ>, MatrixN<T, DimZ>, MatrixN<T, DimZ>), KfError>
[src]

pub fn set_p(&mut self, p: MatrixN<T, DimX>)[src]

pub fn set_x(&mut self, x: VectorN<T, DimX>)[src]

Auto Trait Implementations

impl<T, DimZ, DimX> !RefUnwindSafe for Filter<T, DimZ, DimX>

impl<T, DimZ, DimX> !Send for Filter<T, DimZ, DimX>

impl<T, DimZ, DimX> !Sync for Filter<T, DimZ, DimX>

impl<T, DimZ, DimX> !Unpin for Filter<T, DimZ, DimX>

impl<T, DimZ, DimX> !UnwindSafe for Filter<T, DimZ, DimX>

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, 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>,