abstract class GSL::ODE::JacobianSystem

Overview

Abstract class for ODE systems with Jacobian support.

Defined in:

gsl/maths/analysis/ode.cr

Constructors

Instance Method Summary

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

def self.new(size) #

Initializes system and sets Jacobian callback.


[View source]

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.


[View source]