robotics 0.1.5

Rust implementation of robotics algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use nalgebra::{allocator::Allocator, DefaultAllocator, Dim, OMatrix, OVector, RealField};

#[derive(Debug, Clone)]
pub struct GaussianState<T: RealField, D: Dim>
where
    DefaultAllocator: Allocator<T, D> + Allocator<T, D, D>,
{
    /// State Vector
    pub x: OVector<T, D>,
    /// Covariance Matrix
    pub cov: OMatrix<T, D, D>,
}