|
1 |
| -__all__ = ["all", "any"] |
| 1 | +__all__ = ["all", "any", "diff"] |
2 | 2 |
|
3 | 3 |
|
4 | 4 | from ._types import Optional, Tuple, Union, array
|
@@ -84,3 +84,45 @@ def any(
|
84 | 84 | .. versionchanged:: 2022.12
|
85 | 85 | Added complex data type support.
|
86 | 86 | """
|
| 87 | + |
| 88 | + |
| 89 | +def diff( |
| 90 | + x: array, |
| 91 | + /, |
| 92 | + *, |
| 93 | + axis: int = -1, |
| 94 | + n: int = 1, |
| 95 | + prepend: Optional[array] = None, |
| 96 | + append: Optional[array] = None, |
| 97 | +) -> array: |
| 98 | + """ |
| 99 | + Calculates the n-th discrete forward difference along a specified axis. |
| 100 | +
|
| 101 | + Parameters |
| 102 | + ---------- |
| 103 | + x: array |
| 104 | + input array. Should have a numeric data type. |
| 105 | + axis: int |
| 106 | + axis along which to compute differences. A valid ``axis`` must be an integer on the interval ``[-N, N)``, where ``N`` is the rank (number of dimensions) of ``x``. If an ``axis`` is specified as a negative integer, the function must determine the axis along which to compute differences by counting backward from the last dimension (where ``-1`` refers to the last dimension). If provided an invalid ``axis``, the function must raise an exception. Default: ``-1``. |
| 107 | + n: int |
| 108 | + number of times to recursively compute differences. Default: ``1``. |
| 109 | + prepend: Optional[array] |
| 110 | + values to prepend to a specified axis prior to computing differences. Must have the same shape as ``x``, except for the axis specified by ``axis`` which may have any size. Should have the same data type as ``x``. Default: ``None``. |
| 111 | + append: Optional[array] |
| 112 | + values to append to a specified axis prior to computing differences. Must have the same shape as ``x``, except for the axis specified by ``axis`` which may have any size. Should have the same data type as ``x``. Default: ``None``. |
| 113 | +
|
| 114 | + Returns |
| 115 | + ------- |
| 116 | + out: array |
| 117 | + an array containing the n-th differences. Should have the same data type as ``x``. Must have the same shape as ``x``, except for the axis specified by ``axis`` which must have a size determined as follows: |
| 118 | +
|
| 119 | + - Let ``M`` be the number of elements along an axis specified by ``axis``. |
| 120 | + - Let ``N1`` be the number of prepended values along an axis specified by ``axis``. |
| 121 | + - Let ``N2`` be the number of appended values along an axis specified by ``axis``. |
| 122 | + - The final size of the axis specified by ``axis`` must be ``M + N1 + N2 - n``. |
| 123 | +
|
| 124 | + Notes |
| 125 | + ----- |
| 126 | +
|
| 127 | + - The first-order differences are given by ``out[i] = x[i+1] - x[i]`` along a specified axis. Higher-order differences must be calculated recursively (e.g., by calling ``diff(out, axis=axis, n=n-1)``). |
| 128 | + """ |
0 commit comments