ExponentialFunction
Overview
ExponentialFunction is a class in Aspose.Page FOSS for Python.
ExponentialFunction.evaluate() computes function values for given inputs based on the defined domain, range, and coefficients.
This class provides 1 method for working with ExponentialFunction objects in Python programs.
Available methods include: evaluate.
All public members are accessible to any Python application after installing the Aspose.Page FOSS for Python package.
Properties: c0, c1, domain, n, range.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
domain | list[float] | Read | Gets the domain. |
range | list[float] | Read | Gets the range. |
c0 | list[float] | Read | Gets the c0. |
c1 | list[float] | Read | Gets the c1. |
n | float | Read | Gets the n. |
Methods
| Signature | Description |
|---|---|
evaluate(inputs: list[float]) → list[float] | Computes function values for given inputs based on the defined domain, range, and coefficients |