Function¶
The function class is an abstract class representing a mathematical
function. It offers methods to get properties of the function and to
perform operations on it. The following table lists the available functions
with their parameters:
| Name | Description | Parameters |
|---|---|---|
| Cosine | \(a \cos (bx + c)\) | \(a, b \in \mathbb{R}_0, c \in \mathbb{R}\) |
| Polynomial | \(a_n x^n + ... + a_1x + a_0\) | \(a_n \in \mathbb{R}_0, a_i \in \mathbb{R} \textrm{ for } 0 \leq i < n\) |
| Sine | \(a \sin (bx + c)\) | \(a, b \in \mathbb{R}_0, c \in \mathbb{R}\) |