Package org.hipparchus.ode
Interface ParametersController
- All Superinterfaces:
Parameterizable
Interface to compute by finite difference Jacobian matrix for some parameter
when computing
partial derivatives equations.-
Method Summary
Modifier and TypeMethodDescriptiondoublegetParameter(String name) Get parameter value from its name.voidsetParameter(String name, double value) Set the value for a given parameter.Methods inherited from interface org.hipparchus.ode.Parameterizable
getParametersNames, isSupported
-
Method Details
-
getParameter
Get parameter value from its name.- Parameters:
name- parameter name- Returns:
- parameter value
- Throws:
MathIllegalArgumentException- if parameter is not supported
-
setParameter
Set the value for a given parameter.- Parameters:
name- parameter namevalue- parameter value- Throws:
MathIllegalArgumentException- if parameter is not supported
-