public interface ParameterJacobianProvider extends Parameterizable
partial derivatives equations.| Modifier and Type | Method and Description |
|---|---|
void |
computeParameterJacobian(double t,
double[] y,
double[] yDot,
String paramName,
double[] dFdP)
Compute the Jacobian matrix of ODE with respect to one parameter.
|
getParametersNames, isSupportedvoid computeParameterJacobian(double t,
double[] y,
double[] yDot,
String paramName,
double[] dFdP)
throws MathIllegalArgumentException
The parameter must be one given by Parameterizable.getParametersNames().
t - current value of the independent time variabley - array containing the current value of the main state vectoryDot - array containing the current value of the time derivative
of the main state vectorparamName - name of the parameter to considerdFdP - placeholder array where to put the Jacobian matrix of the
ODE with respect to the parameterMathIllegalArgumentException - if the parameter is not supportedCopyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.