Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "ml-fft", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "fft", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -8,3 +8,4 @@ # ml-fft | ||
fft library for the ml libraries. | ||
fft library for the ml libraries. The idea of this, another flavor of the FFT library, is to perform, Real and Complex matrix FFT and IFFT, by using only the 1D FFT algorithm. | ||
The 1D FFT and IFFT was taken and adapted from this project: [https://github.com/wellflat/javascript-labs/tree/master/cv/fft] | ||
@@ -84,3 +85,3 @@ ## Installation | ||
var convolutedData = convoluteFFT(data, kernel, n, n); | ||
var convolutedData = FFTUtils.convoluteFFT(data, kernel, n, n); | ||
``` | ||
@@ -87,0 +88,0 @@ ## License |
87995
98