Package org.hipparchus.ode
Interface ParametersController
-
- All Superinterfaces:
Parameterizable
public interface ParametersController extends Parameterizable
Interface to compute by finite difference Jacobian matrix for some parameter when computingpartial derivatives equations
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getParameter(String name)
Get parameter value from its name.void
setParameter(String name, double value)
Set the value for a given parameter.-
Methods inherited from interface org.hipparchus.ode.Parameterizable
getParametersNames, isSupported
-
-
-
-
Method Detail
-
getParameter
double getParameter(String name) throws MathIllegalArgumentException
Get parameter value from its name.- Parameters:
name
- parameter name- Returns:
- parameter value
- Throws:
MathIllegalArgumentException
- if parameter is not supported
-
setParameter
void setParameter(String name, double value) throws MathIllegalArgumentException
Set the value for a given parameter.- Parameters:
name
- parameter namevalue
- parameter value- Throws:
MathIllegalArgumentException
- if parameter is not supported
-
-