MCPcopy Create free account
hub / github.com/numpy/numpy / _raw_fftnd

Function _raw_fftnd

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

Source from the content-addressed store, hash-verified

699
700
701def _raw_fftnd(a, s=None, axes=None, function=fft, norm=None):
702 a = asarray(a)
703 s, axes = _cook_nd_args(a, s, axes)
704 itl = list(range(len(axes)))
705 itl.reverse()
706 for ii in itl:
707 a = function(a, n=s[ii], axis=axes[ii], norm=norm)
708 return a
709
710
711def _fftn_dispatcher(a, s=None, axes=None, norm=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