Skip to content

Commit 06e803d

Browse files
committed
Fix equations
1 parent f9cf430 commit 06e803d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/API_specification/array_api/creation_functions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,12 +220,12 @@ def linspace(start: Union[int, float, complex], stop: Union[int, float, complex]
220220
Let :math:`N` be the number of generated values (which is either ``num`` or ``num+1`` depending on whether ``endpoint`` is ``False`` or ``True``, respectively). For real-valued output arrays, the spacing between values is given by
221221
222222
.. math::
223-
\delta_{\textrm{real}} = \frac{\textrm{stop} - \textrm{start}}{N - 1}
223+
\Delta_{\textrm{real}} = \frac{\textrm{stop} - \textrm{start}}{N - 1}
224224
225225
For complex output arrays, let ``a = real(start)``, ``b = imag(start)``, ``c = real(stop)``, and ``d = imag(stop)``. The spacing between complex values is given by
226226
227227
.. math::
228-
\delta_{\textrm{complex}} = \frac{c-a}{N-1} + \frac{d-b}{N-1} j
228+
\Delta_{\textrm{complex}} = \frac{c-a}{N-1} + \frac{d-b}{N-1} j
229229
230230
Parameters
231231
----------

0 commit comments

Comments
 (0)