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 py312heda63a1_0 conda-forge
import numpy
a=numpy.ones((2,0,4))
numpy.fft.fftn(a)
# ValueError: Invalid number of FFT data points (0) specified.
numpy.fft.fftn(a, axes=(1,))
# ValueError: Invalid number of FFT data points (0) specified.
The text was updated successfully, but these errors were encountered:
Following example returns an empty array
while stock NumPy raises a ValueError
The text was updated successfully, but these errors were encountered: