std::function< Matrix< double >(double, Matrix< double >)> ODEJac
alias for Jacobian-Matrix of ODE
Definition: ode.h:20
std::function< Matrix< double >(double, Matrix< double >)> ODE
alias for ODE
Definition: ode.h:17
double TOL
tolerance for the algorithm to determine convergence
Definition: ode.h:60
int maxIter
max iterations for integrated newton steps
Definition: ode.h:62
double h
step width of t
Definition: ode.h:58
ODEJac Jac
jacobian matrix of given function
Definition: ode.h:64
Matrix< int > Iterations
number iterations per time step
Definition: ode.h:31
ODEResult(const Matrix< double > &y, const Matrix< double > &t)
Definition: ode.h:38
Matrix< double > Y
Y-values.
Definition: ode.h:27
Matrix< double > T
T-values (mostly time)
Definition: ode.h:29
ODEResult(const Matrix< double > &y, const Matrix< double > &t, const Matrix< int > &iter)
Definition: ode.h:48