MCPcopy Index your code
hub / github.com/numpy/numpy / _raw_fftnd

Function _raw_fftnd

numpy/fft/_pocketfft.py:741–748  ·  view source on GitHub ↗
(a, s=None, axes=None, function=fft, norm=None, out=None)

Source from the content-addressed store, hash-verified

739
740
741def _raw_fftnd(a, s=None, axes=None, function=fft, norm=None, out=None):
742 a = asarray(a)
743 s, axes = _cook_nd_args(a, s, axes)
744 itl = list(range(len(axes)))
745 itl.reverse()
746 for ii in itl:
747 a = function(a, n=s[ii], axis=axes[ii], norm=norm, out=out)
748 return a
749
750
751def _fftn_dispatcher(a, s=None, axes=None, norm=None, out=None):

Callers 4

fftnFunction · 0.85
ifftnFunction · 0.85
fft2Function · 0.85
ifft2Function · 0.85

Calls 2

asarrayFunction · 0.90
_cook_nd_argsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…