| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,13 +20,25 @@ | |||
| 20 | 20 | ||
| 21 | 21 | /* eslint-disable max-lines */ | |
| 22 | 22 | ||
| 23 | + import float32 = require( '@stdlib/fft/base/fftpack/float32' ); | ||
| 24 | + import float64 = require( '@stdlib/fft/base/fftpack/float64' ); | ||
| 23 | 25 | import generic = require( '@stdlib/fft/base/fftpack/generic' ); | |
| 24 | 26 | import ndarray = require( '@stdlib/fft/base/fftpack/ndarray' ); | |
| 25 | 27 | ||
| 26 | 28 | /** | |
| 27 | 29 | * Interface describing the `fftpack` namespace. | |
| 28 | 30 | */ | |
| 29 | 31 | interface Namespace { | |
| 32 | + /** | ||
| 33 | + * FFTPACK routines for fast Fourier transforms on single-precision floating-point arrays. | ||
| 34 | + */ | ||
| 35 | + float32: typeof float32; | ||
| 36 | + | ||
| 37 | + /** | ||
| 38 | + * FFTPACK routines for fast Fourier transforms on double-precision floating-point arrays. | ||
| 39 | + */ | ||
| 40 | + float64: typeof float64; | ||
| 41 | + | ||
| 30 | 42 | /** | |
| 31 | 43 | * FFTPACK routines for fast Fourier transforms on generic collections. | |
| 32 | 44 | */ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments