[][src]Struct automatica::linear_system::solver::Radau

pub struct Radau<'a, F, T> where
    F: Fn(Seconds<T>) -> Vec<T>,
    T: ComplexField + Float + Scalar
{ /* fields omitted */ }

Struct for the time evolution of the linear system using the implicit Radau method of order 3 with 2 steps

Trait Implementations

impl<'a, F: Clone, T: Clone> Clone for Radau<'a, F, T> where
    F: Fn(Seconds<T>) -> Vec<T>,
    T: ComplexField + Float + Scalar
[src]

impl<'a, F: Debug, T: Debug> Debug for Radau<'a, F, T> where
    F: Fn(Seconds<T>) -> Vec<T>,
    T: ComplexField + Float + Scalar
[src]

impl<'a, F, T> Iterator for Radau<'a, F, T> where
    F: Fn(Seconds<T>) -> Vec<T>,
    T: AbsDiffEq<Epsilon = T> + ComplexField + Float + Scalar + RadauConst + RelativeEq
[src]

Implementation of the Iterator trait for the Radau struct.

type Item = Step<T>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, F, T> RefUnwindSafe for Radau<'a, F, T> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, F, T> Send for Radau<'a, F, T> where
    F: Send

impl<'a, F, T> Sync for Radau<'a, F, T> where
    F: Sync

impl<'a, F, T> Unpin for Radau<'a, F, T> where
    F: Unpin,
    T: Unpin

impl<'a, F, T> UnwindSafe for Radau<'a, F, T> where
    F: UnwindSafe,
    T: RefUnwindSafe + 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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[src]

impl<T> Itertools for T where
    T: Iterator + ?Sized
[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.