The following Matlab project contains the source code and Matlab examples used for fft split split the fft of two real sequences.
function [X1 X2] = fft_split(X)
x = x1 + 1i*x2;
X = fft(x);
X1 = fft(x1);
X2 = fft(x2);
This operation is useful when the FFTs of two real-valued sequences have to be computed at the same time, on a platform with limited resources, for example a small DSP or FPGA.
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.
Project Files:
File Name | Size |
---|---|
fft_split.m | 1314 |
fft_split_tb.m | 1528 |
license.txt | 1509 |