[][src]Struct automatica::linear_system::Equilibrium

pub struct Equilibrium<T: Scalar> { /* fields omitted */ }

Struct describing an equilibrium point

Implementations

impl<T: Scalar> Equilibrium<T>[src]

Implement methods for equilibrium

#[must_use]pub fn x(&self) -> &[T][src]

Retrieve state coordinates for equilibrium

#[must_use]pub fn y(&self) -> &[T][src]

Retrieve output coordinates for equilibrium

Trait Implementations

impl<T: Debug + Scalar> Debug for Equilibrium<T>[src]

impl<T: Display + Scalar> Display for Equilibrium<T>[src]

Implementation of printing of equilibrium point

Auto Trait Implementations

impl<T> RefUnwindSafe for Equilibrium<T> where
    T: RefUnwindSafe

impl<T> Send for Equilibrium<T> where
    T: Send

impl<T> Sync for Equilibrium<T> where
    T: Sync

impl<T> Unpin for Equilibrium<T> where
    T: Unpin

impl<T> UnwindSafe for Equilibrium<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.