Skip to main content

ExponentialInterpolationFunction Class

An exponential interpolation function (PDF Type 2 function).

Declaration

public class ExponentialInterpolationFunction extends CustomFunction

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
JavaObject
CustomFunction
ExponentialInterpolationFunction

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 0.

c1 double[]

The output values for an input value of 1.

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 0.

getC1() Method

Returns function values at unit input.

Declaration

public double[] getC1()

Returns

Type Description
double[]

The output values for an input value of 1.

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 0.

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 1.

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.