Struct rgsl::types::ordinary_differential_equations::ODEiv2System[][src]

pub struct ODEiv2System<'a> { /* fields omitted */ }
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

Performs the conversion.

Performs the conversion.

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.