deimos_numerics 0.16.2

Numerical methods and control systems analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Dynamic-size `no_std + alloc` embedded runtimes.
//!
use faer::{Col, Mat};

pub mod estimation;

/// Heap-backed dense matrix used by the `embedded::alloc` estimators.
pub type Matrix<T> = Mat<T>;

/// Heap-backed dense column vector used by the `embedded::alloc` estimators.
pub type Vector<T> = Col<T>;