forked from trekhleb/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Inverse Discrete Fourier Transform.
- Loading branch information
Showing
5 changed files
with
112 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/algorithms/math/fourier-transform/__test__/inverseDiscreteFourierTransform.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import inverseDiscreteFourierTransform from '../inverseDiscreteFourierTransform'; | ||
import FourierTester from './FourierTester'; | ||
|
||
describe('inverseDiscreteFourierTransform', () => { | ||
it('should calculate output signal out of input frequencies', () => { | ||
FourierTester.testInverseFourierTransform(inverseDiscreteFourierTransform); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
src/algorithms/math/fourier-transform/inverseDiscreteFourierTransform.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import ComplexNumber from '../complex-number/ComplexNumber'; | ||
|
||
const CLOSE_TO_ZERO_THRESHOLD = 1e-10; | ||
|
||
/** | ||
* Inverse Discrete Fourier Transform (IDFT): frequencies to time. | ||
* | ||
* Time complexity: O(N^2) | ||
* | ||
* @param {ComplexNumber[]} frequencies - Frequencies summands of the final signal. | ||
* @param {number} zeroThreshold - Threshold that is used to convert real and imaginary numbers | ||
* to zero in case if they are smaller then this. | ||
* | ||
* @return {number[]} - Discrete amplitudes distributed in time. | ||
*/ | ||
export default function inverseDiscreteFourierTransform( | ||
frequencies, | ||
zeroThreshold = CLOSE_TO_ZERO_THRESHOLD, | ||
) { | ||
const N = frequencies.length; | ||
const amplitudes = []; | ||
|
||
// Go through every discrete point of time. | ||
for (let timer = 0; timer < N; timer += 1) { | ||
// Compound amplitude at current time. | ||
let amplitude = new ComplexNumber(); | ||
|
||
// Go through all discrete frequencies. | ||
for (let frequency = 0; frequency < N; frequency += 1) { | ||
const currentFrequency = frequencies[frequency]; | ||
|
||
// Calculate rotation angle. | ||
const rotationAngle = (2 * Math.PI) * frequency * (timer / N); | ||
|
||
// Remember that e^ix = cos(x) + i * sin(x); | ||
const frequencyContribution = new ComplexNumber({ | ||
re: Math.cos(rotationAngle), | ||
im: Math.sin(rotationAngle), | ||
}).multiply(currentFrequency); | ||
|
||
amplitude = amplitude.add(frequencyContribution); | ||
} | ||
|
||
// Close to zero? You're zero. | ||
if (Math.abs(amplitude.re) < zeroThreshold) { | ||
amplitude.re = 0; | ||
} | ||
|
||
if (Math.abs(amplitude.im) < zeroThreshold) { | ||
amplitude.im = 0; | ||
} | ||
|
||
// Add current frequency signal to the list of compound signals. | ||
amplitudes[timer] = amplitude.re; | ||
} | ||
|
||
return amplitudes; | ||
} |