You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/stdlib/math.rst
+14-16
Original file line number
Diff line number
Diff line change
@@ -2858,28 +2858,26 @@ multi-threading. Use `FFTW.set_num_threads(np)` to use `np` threads.
2858
2858
2859
2859
.. function:: fft(A [, dims])
2860
2860
2861
-
Performs a multidimensional FFT of the array ``A``. The optional ``dims``
2862
-
argument specifies an iterable subset of dimensions (e.g. an integer,
2863
-
range, tuple, or array) to transform along. Most efficient if the
2864
-
size of ``A`` along the transformed dimensions is a product of small
2865
-
primes; see :func:`nextprod`. See also :func:`plan_fft` for even
2866
-
greater efficiency.
2861
+
.. Docstring generated from Julia source
2862
+
2863
+
.. code-block:: julia
2864
+
2865
+
fft(A[, dims])
2866
+
2867
+
Performs a multidimensional FFT of the array ``A``\ . The optional ``dims`` argument specifies an iterable subset of dimensions (e.g. an integer, range, tuple, or array) to transform along. Most efficient if the size of ``A`` along the transformed dimensions is a product of small primes; see ``nextprod()``\ . See also ``plan_fft()`` for even greater efficiency.
2867
2868
2868
-
A one-dimensional FFT computes the one-dimensional discrete Fourier
2869
-
transform (DFT) as defined by
2869
+
A one-dimensional FFT computes the one-dimensional discrete Fourier transform (DFT) as defined by
0 commit comments