JSPM

g-fft

1.1.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 2
    • Score
      100M100P100Q12890F
    • License ISC

    FFT

    Package Exports

    • g-fft

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (g-fft) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    g-FFT

    implementation of the Fast Fourier Transform (快速傅里叶变换)


    Simple Example

    var FFT = require('G-FFT').FFT,
       signal = [{real:1,image:0},...];
    
    var phasors = FFT(signal,1024);
    
    console.log(phasors);