文件名称:DFT的matlab源代码-fft.js:Javascript中的离散傅立叶变换,旨在相当快
文件大小:20KB
文件格式:ZIP
更新时间:2024-06-14 20:54:46
系统开源
DFT的matlab源代码fft.js 我认为JavaScript中的FFT可以正常工作。 没有承诺,但是我曾经对Wolfram Alpha进行过测试,并且它相当准确。 有针对主要因子2、3、4的优化内核,因此,如果要获得高性能,请使用长度是这些因子的一个。 请注意,DFT未标准化,因此ifft(fft(x)) / n ~= x 用法 /* Create a new FFT object */ var fft = new FFT . complex ( n , inverse ) /* Output and input should be float arrays (of the right length), type is either 'complex' (default) or 'real' */ fft . process ( output , outputOffset , outputStride , input , inputOffset , inputStride , type ) /* Or the simplified interface, which just se
【文件预览】:
fft.js-master
----package.json(422B)
----test.html(4KB)
----LICENSE(1KB)
----src()
--------real.erb.js(16KB)
--------real.rb(1KB)
--------complex.rb(1KB)
--------complex.erb.js(8KB)
--------node.erb.js(87B)
----.gitignore(26B)
----lib()
--------complex.js(11KB)
--------node.js(11KB)
--------real.js(10KB)
--------node.erb.js(8KB)
----Makefile(274B)
----README.md(1KB)