pub struct ClosedLoopPlant<T> {
pub a: Array2<T>,
pub b: Array2<T>,
pub c: Array2<T>,
}Expand description
LTI plant matrices for closed-loop regulation.
Fields§
§a: Array2<T>§b: Array2<T>§c: Array2<T>Trait Implementations§
Source§impl<T: Clone> Clone for ClosedLoopPlant<T>
impl<T: Clone> Clone for ClosedLoopPlant<T>
Source§fn clone(&self) -> ClosedLoopPlant<T>
fn clone(&self) -> ClosedLoopPlant<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for ClosedLoopPlant<T>
impl<T: Debug> Debug for ClosedLoopPlant<T>
Source§impl<T: PartialEq> PartialEq for ClosedLoopPlant<T>
impl<T: PartialEq> PartialEq for ClosedLoopPlant<T>
Source§fn eq(&self, other: &ClosedLoopPlant<T>) -> bool
fn eq(&self, other: &ClosedLoopPlant<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for ClosedLoopPlant<T>
Auto Trait Implementations§
impl<T> Freeze for ClosedLoopPlant<T>
impl<T> RefUnwindSafe for ClosedLoopPlant<T>where
T: RefUnwindSafe,
impl<T> Send for ClosedLoopPlant<T>where
T: Send,
impl<T> Sync for ClosedLoopPlant<T>where
T: Sync,
impl<T> Unpin for ClosedLoopPlant<T>
impl<T> UnsafeUnpin for ClosedLoopPlant<T>
impl<T> UnwindSafe for ClosedLoopPlant<T>where
T: RefUnwindSafe,
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