We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ValueError
s
irfftn
The following example works with NumPy but not with mkl_fft.
import numpy x = numpy.random.random((30, 20, 10)) numpy.fft.fftn(x, s=(10, 20, 10), axes=(0, 1, 2)).shape # (10, 20, 10) import mkl_fft, numpy x = numpy.random.random((30, 20, 10)) mkl_fft.irfftn(x, s=(10, 20, 10), axes=(0, 1, 2)).shape # ... # ValueError: could not broadcast input array from shape (10,20) into shape (30,20)
The text was updated successfully, but these errors were encountered:
vtavana
Successfully merging a pull request may close this issue.
The following example works with NumPy but not with mkl_fft.
The text was updated successfully, but these errors were encountered: