I notice that generic_fft allows me to fft BigFloat, which is great!
I found however that I couldn't do the usual thing with FFTW, e.g.
for only DFTing along the rows:
FastTransforms.generic_fft(BigFloat.(randn(20,20))+im*BigFloat.(randn(20,20)),2)
ERROR: UndefVarError: ret not defined
Stacktrace:
[1] generic_fft(x::Matrix{Complex{BigFloat}}, region::Int64)
@ FastTransforms ~/.julia/packages/FastTransforms/spjz2/src/fftBigFloat.jl:35
[2] top-level scope
@ REPL[19]:1
Is it possible?
I notice that
generic_fftallows me tofftBigFloat, which is great!I found however that I couldn't do the usual thing with FFTW, e.g.
for only DFTing along the rows:
Is it possible?