ExponentialInterpolationFunction Class
An exponential interpolation function (PDF Type 2 function).
Declaration
public class ExponentialInterpolationFunction extends CustomFunction
Inherited Members
Inheritance
ExponentialInterpolationFunction(double[] c0, double[] c1, double exponent)
Initializes a new instance of the ExponentialInterpolationFunction class with specified endpoint values and exponent.
Declaration
public ExponentialInterpolationFunction(double[] c0, double[] c1, double exponent)
Parameters
| Name | Type | Description |
|---|---|---|
| c0 | double[] | The output values for an input value of |
| c1 | double[] | The output values for an input value of |
| exponent | double | The exponent that defines the interpolation. |
Methods
getC0() Method
Returns function values at zero input.
Declaration
public double[] getC0()
Returns
| Type | Description |
|---|---|
| double[] | The output values for an input value of |
getC1() Method
Returns function values at unit input.
Declaration
public double[] getC1()
Returns
| Type | Description |
|---|---|
| double[] | The output values for an input value of |
getExponent() Method
Returns the interpolation exponent.
Declaration
public double getExponent()
Returns
| Type | Description |
|---|---|
| double | The exponent that defines the interpolation. |
setC0(double[] value) Method
Sets function values at zero input.
Declaration
public void setC0(double[] value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | double[] | The output values for an input value of |
setC1(double[] value) Method
Sets function values at unit input.
Declaration
public void setC1(double[] value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | double[] | The output values for an input value of |
setExponent(double value) Method
Sets the interpolation exponent.
Declaration
public void setExponent(double value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | double | The exponent that defines the interpolation. |