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
# Name Version Build Channel# ────────────────────────────────────────────────────# numpy 1.26.4 py311h689b997_3 intel # numpy-base 1.26.4 py311h913173e_3 intel# mkl_fft 1.3.8 py311h977b55c_72 intelimportnumpyb=numpy.arange(24.).reshape(2, 3, 4)
numpy.fft.rfft2(b, axes=(1, 2), norm="forward").shape# ...# IndexError: list index out of range
while stock NumPy works correctly
# Name Version Build Channel# ──────────────────────────────────────────────# numpy 1.26.4 py312heda63a1_0 conda-forgeimportnumpyb=numpy.arange(24.).reshape(2, 3, 4)
numpy.fft.rfft2(b, axes=(1, 2), norm="forward").shape# (2, 3, 3)
For the same example, there is no issue, if norm is None or "backward".
The text was updated successfully, but these errors were encountered:
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: