Julia 中的 BigFloat FFT
BigFloat FFT in Julia
我想在 Julia 中对 BigFloats 数组执行 FFT,但到目前为止我无法实现。我找到了 FFTW.jl 并按照他们文档中的说明进行操作(importall FFTW
,等等)。遗憾的是,这没有帮助,当 运行 像 fft([BigFloat(1.0)])
.
这样的命令时,我仍然得到 ERROR: type BigFloat not supported
有没有人遇到(并希望克服)类似的问题?
FFTW.jl 是 C 库 FFTW which cannot handle BigFloats. You need to find a pure-Julia code, like this one in FastTransforms.jl.
的包装器
我想在 Julia 中对 BigFloats 数组执行 FFT,但到目前为止我无法实现。我找到了 FFTW.jl 并按照他们文档中的说明进行操作(importall FFTW
,等等)。遗憾的是,这没有帮助,当 运行 像 fft([BigFloat(1.0)])
.
ERROR: type BigFloat not supported
有没有人遇到(并希望克服)类似的问题?
FFTW.jl 是 C 库 FFTW which cannot handle BigFloats. You need to find a pure-Julia code, like this one in FastTransforms.jl.
的包装器