Package org.hipparchus.migration.ode
Interface MainStateJacobianProvider
-
- All Superinterfaces:
OrdinaryDifferentialEquation
@Deprecated public interface MainStateJacobianProvider extends OrdinaryDifferentialEquation
Deprecated.as of 1.0, replaced withODEJacobiansProviderInterface expandingfirst order differential equationsin order to compute exactly the main state jacobian matrix forpartial derivatives equations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description double[][]computeMainStateJacobian(double t, double[] y, double[] yDot)Deprecated.Compute the jacobian matrix of ODE with respect to main state.-
Methods inherited from interface org.hipparchus.ode.OrdinaryDifferentialEquation
computeDerivatives, getDimension, init
-
-
-
-
Method Detail
-
computeMainStateJacobian
double[][] computeMainStateJacobian(double t, double[] y, double[] yDot) throws MathIllegalArgumentException, MathIllegalStateExceptionDeprecated.Compute the jacobian matrix of ODE with respect to main state.- Parameters:
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 vector- Returns:
- Jacobian matrix of the ODE w.r.t. the main state vector
- Throws:
MathIllegalStateException- if the number of functions evaluations is exceededMathIllegalArgumentException- if arrays dimensions do not match equations settings
-
-