rtsam 0.1.4

Real Time Smoothing and Mapping (RTSAM) in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::symbolic::types::symbol::Size;

use nalgebra::Scalar;

pub struct Matrix<T: Scalar> {
    name: String,
    m: Size,
    n: Size,
    _type: T,
    location: String,
}