ExponentialFunction Constructor (String, Double, Double, Double, Double)

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Initializes a new instance of the Object class.

Namespace:  Apitron.PDF.Kit.FixedLayout.Resources.Functions
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public ExponentialFunction(
	string resourceID,
	double[] c0,
	double[] c1,
	double N,
	double[] domain
)

Parameters

resourceID
Type: SystemString
The resource id.
c0
Type: SystemDouble
An array of n numbers that shall define the function result when x = 0.0. Default value: [0.0].
c1
Type: SystemDouble
An array of n numbers that shall define the function result when x = 1.0. Default value: [1.0].
N
Type: SystemDouble
The interpolation exponent. Each input value x shall return n values, given by yj = C0j + x^N × (C1j − C0j), for 0 greater or equal j less then n.
domain
Type: SystemDouble
An array of 2 × m numbers, where m shall be the number of input values. For each i from 0 to m − 1, Domain2i shall be less than or equal to Domain2i+1, and the ith input value, xi, shall lie in the interval Domain2i ≤ xi ≤ Domain2i+1. Input values outside the declared domain shall be clipped to the nearest boundary value.
See Also

Reference