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
importnumpya=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: