Interface ParameterizedODE
- All Superinterfaces:
FirstOrderDifferentialEquations
Deprecated.
as of 2.2 the complete package is deprecated, it will be replaced
in 3.0 by a completely rewritten implementation
This interface represents
first order differential equations with parameters.- Since:
- 2.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.Get the number of parameters.voidsetParameter(int i, double value) Deprecated.Set a parameter.Methods inherited from interface org.apache.commons.math.ode.FirstOrderDifferentialEquations
computeDerivatives, getDimension
-
Method Details
-
getParametersDimension
int getParametersDimension()Deprecated.Get the number of parameters.- Returns:
- number of parameters
-
setParameter
void setParameter(int i, double value) Deprecated.Set a parameter.- Parameters:
i- index of the parameters (must be between 0 andgetParametersDimension() - 1)value- value for the parameter
-