ExponentialFunction
Overview
ExponentialFunction is a class in Aspose.Pdf FOSS for Java.
Inherits from: PdfFunction.
Type 2 (Exponential Interpolation) function (ISO 32000-1:2008, §7.10.3).
Properties
| Name | Type | Access | Description |
|---|---|---|---|
exponent | double | Read | Returns the exponent N. |
inputDimension | int | Read | Returns the number of input values. |
outputDimension | int | Read | Returns the number of output values. |
Methods
| Signature | Description |
|---|---|
ExponentialFunction(dict: COSDictionary, domain: double[], range: double[]) | Creates an exponential function from a COS dictionary. |
ExponentialFunction(domain: double[], range: double[], c0: double[], c1: double[], exponent: double) | Creates an exponential function directly (for testing). |
evaluate(input: double[]) → double[] | |
getExponent() → double | Returns the exponent N. |
getInputDimension() → int | Returns the number of input values. |
getOutputDimension() → int | Returns the number of output values. |
parse(obj: COSBase, parser: PDFParser) → PdfFunction | Factory: parses a function from a COS object (dictionary or stream). |