Class ParameterConfiguration

java.lang.Object
org.apache.commons.math3.ode.ParameterConfiguration
All Implemented Interfaces:
Serializable

class ParameterConfiguration extends Object implements Serializable
Simple container pairing a parameter name with a step in order to compute the associated Jacobian matrix by finite difference.
Since:
3.0
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Serializable UID.
      See Also:
    • parameterName

      private String parameterName
      Parameter name.
    • hP

      private double hP
      Parameter step for finite difference computation.
  • Constructor Details

    • ParameterConfiguration

      ParameterConfiguration(String parameterName, double hP)
      Parameter name and step pair constructor.
      Parameters:
      parameterName - parameter name
      hP - parameter step
  • Method Details

    • getParameterName

      public String getParameterName()
      Get parameter name.
      Returns:
      parameterName parameter name
    • getHP

      public double getHP()
      Get parameter step.
      Returns:
      hP parameter step
    • setHP

      public void setHP(double hParam)
      Set parameter step.
      Parameters:
      hParam - parameter step