| Function | Description |
|---|---|
| series_abs | Returns the absolute value of a series. |
| series_acos | Returns the inverse cosine (arccos) of a series. |
| series_asin | Returns the inverse sine (arcsin) of a series. |
| series_atan | Returns the inverse tangent (arctan) of a series. |
| series_cos | Returns the cosine of a series. |
| series_equals | Compares each element in a series to a specified value and returns a boolean array. |
| series_exp | Calculates the exponential (e^x) of each element in a series. |
| series_fft | Performs a Fast Fourier Transform on a series, converting time-domain data into frequency-domain representation. |
| series_fill_backward | Fills missing values by propagating the last known value backward through the array. |
| series_fill_const | Fills missing values with a specified constant value. |
| series_fill_forward | Fills missing values by propagating the first known value forward through the array. |
| series_fill_linear | Fills missing values using linear interpolation between known values. |
| series_fir | Applies a Finite Impulse Response filter to a series using a specified filter kernel. |
| series_floor | Rounds down each element in a series to the nearest integer. |
| series_greater | Returns the elements of a series that are greater than a specified value. |
| series_greater_equals | Returns the elements of a series that are greater than or equal to a specified value. |
| series_ifft | Performs an Inverse Fast Fourier Transform on a series, converting frequency-domain data back into time-domain representation. |
| series_less | Returns the elements of a series that are less than a specified value. |
| series_less_equals | Returns the elements of a series that are less than or equal to a specified value. |
| series_not_equals | Returns the elements of a series that aren’t equal to a specified value. |
| series_sin | Returns the sine of a series. |
| series_sum | Returns the sum of a series. |
| series_tan | Returns the tangent of a series. |
Time series functions operate on dynamic arrays where the values are real numbers.