ExponentialFunction

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

NameTypeAccessDescription
exponentdoubleReadReturns the exponent N.
inputDimensionintReadReturns the number of input values.
outputDimensionintReadReturns the number of output values.

Methods

SignatureDescription
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()doubleReturns the exponent N.
getInputDimension()intReturns the number of input values.
getOutputDimension()intReturns the number of output values.
parse(obj: COSBase, parser: PDFParser)PdfFunctionFactory: parses a function from a COS object (dictionary or stream).

See Also