Package pulse.math
Class FunctionWithInterpolation
- java.lang.Object
-
- pulse.math.FunctionWithInterpolation
-
- All Implemented Interfaces:
Serializable
public abstract class FunctionWithInterpolation extends Object implements Serializable
An abstract class for univariate functions with the capacity of spline interpolation.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
NUM_PARTITIONS
-
Constructor Summary
Constructors Constructor Description FunctionWithInterpolation(Segment parameterBounds)
FunctionWithInterpolation(Segment parameterBounds, int lookupTableSize)
Constructs aFunctionWithInterpolation
by tabulating the function values within theparameterBounds
at discrete nodes, the number of which is given by the second argument.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract double
evaluate(double t)
Performs the calculation att
.Segment
getParameterBounds()
Retrieves the parameter bounds.void
setParameterBounds(Segment parameterBounds)
Sets the parameter bounds toparameterBounds
.double
valueAt(double t)
Uses the stored interpolation function to calculate values at anyt
within the parameter bounds.
-
-
-
Field Detail
-
NUM_PARTITIONS
public static final int NUM_PARTITIONS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FunctionWithInterpolation
public FunctionWithInterpolation(Segment parameterBounds, int lookupTableSize)
Constructs aFunctionWithInterpolation
by tabulating the function values within theparameterBounds
at discrete nodes, the number of which is given by the second argument. After having done this, creates aSplineInterpolation
, which can be invoked in future to calculate intermediate function values without loss of accuracy.- Parameters:
parameterBounds
- the calculation bounds.lookupTableSize
- a size of the table for discrete function calculations.
-
FunctionWithInterpolation
public FunctionWithInterpolation(Segment parameterBounds)
- Parameters:
parameterBounds
- the calculation bounds.
-
-
Method Detail
-
evaluate
public abstract double evaluate(double t)
Performs the calculation att
.- Parameters:
t
- the value of the independent variable- Returns:
- the function value at
t
-
valueAt
public double valueAt(double t)
Uses the stored interpolation function to calculate values at anyt
within the parameter bounds. Note: Ift
is not contained within the parameter bounds, the method will return 0.0.- Parameters:
t
- the value of the independent variable- Returns:
- will return the interpolated value or 0.0
-
getParameterBounds
public Segment getParameterBounds()
Retrieves the parameter bounds.- Returns:
- the parameter bounds.
-
setParameterBounds
public void setParameterBounds(Segment parameterBounds)
Sets the parameter bounds toparameterBounds
. The interpolation will then be re-calculated.- Parameters:
parameterBounds
- the new parameter bounds.
-
-