[][src]Struct diffeq::ode::rosenbrock::RosenbrockCoeffs

pub struct RosenbrockCoeffs<S: Dim> where
    DefaultAllocator: Allocator<f64, S, S> + Allocator<f64, S>, 
{ pub gamma: f64, pub a: MatrixN<f64, S>, pub b: VectorN<f64, S>, pub c: MatrixN<f64, S>, }

Fields

gamma: f64a: MatrixN<f64, S>b: VectorN<f64, S>c: MatrixN<f64, S>

Methods

impl RosenbrockCoeffs<U4>[src]

pub fn kr4() -> Self[src]

Kaps-Rentrop coefficients

pub fn s4() -> Self[src]

Shampine coefficients

Trait Implementations

impl<S: Clone + Dim> Clone for RosenbrockCoeffs<S> where
    DefaultAllocator: Allocator<f64, S, S> + Allocator<f64, S>, 
[src]

impl<S: Debug + Dim> Debug for RosenbrockCoeffs<S> where
    DefaultAllocator: Allocator<f64, S, S> + Allocator<f64, S>, 
[src]

Auto Trait Implementations

impl<S> !RefUnwindSafe for RosenbrockCoeffs<S>

impl<S> !Send for RosenbrockCoeffs<S>

impl<S> !Sync for RosenbrockCoeffs<S>

impl<S> !Unpin for RosenbrockCoeffs<S>

impl<S> !UnwindSafe for RosenbrockCoeffs<S>

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>, 
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,