abstract class
GSL::ODE::JacobianSystem
- GSL::ODE::JacobianSystem
- GSL::ODE::System
- Reference
- Object
Overview
Abstract class for ODE systems with Jacobian support.
Defined in:
gsl/maths/analysis/ode.crConstructors
-
.new(size)
Initializes system and sets Jacobian callback.
Instance Method Summary
-
#jacobian(t : LibC::Double, y : Slice(LibC::Double), dfdy : Slice(LibC::Double), dfdt : Slice(LibC::Double))
Abstract method: compute Jacobian ∂f/∂y and ∂f/∂t.
Instance methods inherited from class GSL::ODE::System
function(t : LibC::Double, y : Slice(LibC::Double), dydt : Slice(LibC::Double))
function,
size
size,
to_unsafe
to_unsafe
Constructor methods inherited from class GSL::ODE::System
new(size : Int32)
new
Constructor Detail
Instance Method Detail
abstract
def jacobian(t : LibC::Double, y : Slice(LibC::Double), dfdy : Slice(LibC::Double), dfdt : Slice(LibC::Double))
#
Abstract method: compute Jacobian ∂f/∂y and ∂f/∂t.