pub struct NonLinearSystem<T: RealField, const N: usize, const U: usize> { /* private fields */ }
Expand description
A non-linear system with an input. Defined by a StepFunction that performs state transition and jacobian and covariance calculation.
Implementations§
Source§impl<T: RealField, const N: usize, const U: usize> NonLinearSystem<T, N, U>
impl<T: RealField, const N: usize, const U: usize> NonLinearSystem<T, N, U>
Sourcepub fn new(step_fn: StepFunction<T, N, U>, x_initial: SVector<T, N>) -> Self
pub fn new(step_fn: StepFunction<T, N, U>, x_initial: SVector<T, N>) -> Self
Create a new NonLinearSystem using a StepFunction
Trait Implementations§
Source§impl<T: Clone + RealField, const N: usize, const U: usize> Clone for NonLinearSystem<T, N, U>
impl<T: Clone + RealField, const N: usize, const U: usize> Clone for NonLinearSystem<T, N, U>
Source§fn clone(&self) -> NonLinearSystem<T, N, U>
fn clone(&self) -> NonLinearSystem<T, N, U>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug + RealField, const N: usize, const U: usize> Debug for NonLinearSystem<T, N, U>
impl<T: Debug + RealField, const N: usize, const U: usize> Debug for NonLinearSystem<T, N, U>
Source§impl<T: RealField + Copy, const N: usize, const U: usize> InputSystem<T, N, U> for NonLinearSystem<T, N, U>
impl<T: RealField + Copy, const N: usize, const U: usize> InputSystem<T, N, U> for NonLinearSystem<T, N, U>
Source§impl<T: RealField + Copy, const N: usize, const U: usize> System<T, N, U> for NonLinearSystem<T, N, U>
impl<T: RealField + Copy, const N: usize, const U: usize> System<T, N, U> for NonLinearSystem<T, N, U>
Source§fn transition(&self) -> &SMatrix<T, N, N>
fn transition(&self) -> &SMatrix<T, N, N>
Get the transition matrix (Jacobian)
Source§fn transition_transpose(&self) -> &SMatrix<T, N, N>
fn transition_transpose(&self) -> &SMatrix<T, N, N>
Get the transpose of the transition matrix
Source§fn covariance(&self) -> &SMatrix<T, N, N>
fn covariance(&self) -> &SMatrix<T, N, N>
Get a reference to the process covariance matrix
Auto Trait Implementations§
impl<T, const N: usize, const U: usize> Freeze for NonLinearSystem<T, N, U>where
T: Freeze,
impl<T, const N: usize, const U: usize> RefUnwindSafe for NonLinearSystem<T, N, U>where
T: RefUnwindSafe,
impl<T, const N: usize, const U: usize> Send for NonLinearSystem<T, N, U>
impl<T, const N: usize, const U: usize> Sync for NonLinearSystem<T, N, U>
impl<T, const N: usize, const U: usize> Unpin for NonLinearSystem<T, N, U>where
T: Unpin,
impl<T, const N: usize, const U: usize> UnwindSafe for NonLinearSystem<T, N, U>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.