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
importmkl_fft.interfacesasmfi, numpyb=numpy.arange(24.).reshape(2, 3, 4)
mfi.numpy_fft.rfft2(b, axes=(1, 2), norm="forward").shape# ...# IndexError: list index out of range
importmkl_fft.interfacesasmfi, numpyb=numpy.arange(24.).reshape(2, 3, 4)
mfi.scipy_fft.rfft2(b, axes=(1, 2), norm="forward").shape# ...# IndexError: list index out of range
Following example returns an error
while stock NumPy works correctly
For the same example, there is no issue, if
norm
isNone
or"backward"
.The text was updated successfully, but these errors were encountered: