pub struct ClosedLoopGains<T> {
pub k: Array2<T>,
pub l: Array2<T>,
}Expand description
Precomputed LQR and observer gains.
Fields§
§k: Array2<T>§l: Array2<T>Trait Implementations§
Source§impl<T: Clone> Clone for ClosedLoopGains<T>
impl<T: Clone> Clone for ClosedLoopGains<T>
Source§fn clone(&self) -> ClosedLoopGains<T>
fn clone(&self) -> ClosedLoopGains<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 ClosedLoopGains<T>
impl<T: Debug> Debug for ClosedLoopGains<T>
Source§impl<T: PartialEq> PartialEq for ClosedLoopGains<T>
impl<T: PartialEq> PartialEq for ClosedLoopGains<T>
Source§fn eq(&self, other: &ClosedLoopGains<T>) -> bool
fn eq(&self, other: &ClosedLoopGains<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T> StructuralPartialEq for ClosedLoopGains<T>
Auto Trait Implementations§
impl<T> Freeze for ClosedLoopGains<T>
impl<T> RefUnwindSafe for ClosedLoopGains<T>where
T: RefUnwindSafe,
impl<T> Send for ClosedLoopGains<T>where
T: Send,
impl<T> Sync for ClosedLoopGains<T>where
T: Sync,
impl<T> Unpin for ClosedLoopGains<T>
impl<T> UnsafeUnpin for ClosedLoopGains<T>
impl<T> UnwindSafe for ClosedLoopGains<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