pub struct ODEiv2System<'a> { /* private fields */ }
Expand description

Description of a system of ODEs.

y' = f(t,y) = dydt(t, y)

The system is specified by giving the right-hand-side of the equation and possibly a jacobian function.

Some methods require the jacobian function, which calculates the matrix dfdy and the vector dfdt. The matrix dfdy conforms to the GSL standard, being a continuous range of floating point values, in row-order.

Implementations§

Returns a new ODEiv2System with a given dimension and right-hand side.

Returns a new ODEiv2System with a jacobian function provided.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.