-
-
Notifications
You must be signed in to change notification settings - Fork 343
Add Fast Fourier Transform (FFT) in R #242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nachiket2005
wants to merge
1
commit into
TheAlgorithms:master
Choose a base branch
from
nachiket2005:Add_fast_fourier
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,29 @@ | ||
# Fast Fourier Transform (FFT) | ||
|
||
This file documents the recursive Cooley-Tukey FFT implementation added to `R/mathematics/fast_fourier_transform.r`. | ||
|
||
## Description | ||
|
||
The `fft_recursive` function computes the discrete Fourier transform (DFT) of a numeric or complex vector using a divide-and-conquer Cooley-Tukey algorithm. If the input length is not a power of two, it is zero-padded to the next power of two. | ||
|
||
## Usage | ||
|
||
In an R session: | ||
|
||
source('mathematics/fast_fourier_transform.r') | ||
fft_recursive(c(0, 1, 2, 3)) | ||
|
||
From the command line with Rscript: | ||
|
||
Rscript -e "source('R/mathematics/fast_fourier_transform.r'); print(fft_recursive(c(0,1,2,3)))" | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Complexity | ||
|
||
Time complexity: O(n log n) for inputs with length a power of two; otherwise dominated by padding to next power of two. | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Space complexity: O(n) additional space for recursive calls. | ||
|
||
## Notes | ||
|
||
- The function returns a complex vector of the same length (after padding) as the input. | ||
- This implementation is primarily educational; production code should prefer the optimized `fft` function available in base R. |
This file contains hidden or 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,53 @@ | ||
# Fast Fourier Transform (Cooley-Tukey recursive implementation) | ||
# | ||
# This implementation accepts a numeric or complex vector and returns | ||
# its discrete Fourier transform as a complex vector. If the input length | ||
# is not a power of two, the vector is zero-padded to the next power of two. | ||
# | ||
# Usage: | ||
# source('mathematics/fast_fourier_transform.r') | ||
# x <- c(0,1,2,3) | ||
# fft_result <- fft_recursive(x) | ||
# print(fft_result) | ||
|
||
next_power_of_two <- function(n) { | ||
if (n <= 0) return(1) | ||
p <- 1 | ||
while (p < n) p <- p * 2 | ||
p | ||
} | ||
|
||
fft_recursive <- function(x) { | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Ensure input is complex | ||
x <- as.complex(x) | ||
N <- length(x) | ||
|
||
# Pad to next power of two if necessary | ||
M <- next_power_of_two(N) | ||
if (M != N) { | ||
x <- c(x, rep(0+0i, M - N)) | ||
N <- M | ||
} | ||
|
||
if (N == 1) return(x) | ||
|
||
even <- fft_recursive(x[seq(1, N, by = 2)]) | ||
odd <- fft_recursive(x[seq(2, N, by = 2)]) | ||
|
||
factor <- exp(-2i * pi * (0:(N/2 - 1)) / N) | ||
T <- factor * odd | ||
|
||
c(even + T, even - T) | ||
} | ||
|
||
# Example usage when run directly with Rscript | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (identical(Sys.getenv("R_SCRIPT_NAME"), "") && interactive()) { | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Running in interactive R session - show sample | ||
x <- c(0, 1, 2, 3) | ||
cat("Input:\n") | ||
print(x) | ||
cat("FFT result:\n") | ||
print(fft_recursive(x)) | ||
} | ||
|
||
# When running via Rscript, users can call: Rscript -e "source('R/mathematics/fast_fourier_transform.r'); print(fft_recursive(c(0,1,2,3)))" | ||
nachiket2005 marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.