Interface ParameterizedODE
-
- All Superinterfaces:
FirstOrderDifferentialEquations
@Deprecated public interface ParameterizedODE extends FirstOrderDifferentialEquations
Deprecated.as of 2.2 the complete package is deprecated, it will be replaced in 3.0 by a completely rewritten implementationThis interface representsfirst order differential equations
with parameters.- Since:
- 2.1
- See Also:
FirstOrderIntegratorWithJacobians
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description int
getParametersDimension()
Deprecated.Get the number of parameters.void
setParameter(int i, double value)
Deprecated.Set a parameter.-
Methods inherited from interface org.apache.commons.math.ode.FirstOrderDifferentialEquations
computeDerivatives, getDimension
-
-
-
-
Method Detail
-
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
-
-