We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
irfft
float64
float32
irfft returns float64 for an input with dtype of float32
import mkl_fft, numpy a = numpy.ones(10, dtype="f4") mkl_fft.irfft(a).dtype # dtype('float64') numpy.__version__ # '2.2.3' numpy.fft.irfft(a).dtype # dtype('float32')