fftshift implementation in Simulink
조회 수: 5 (최근 30일)
이전 댓글 표시
I need to generate IPs for HDL implementation of an algorithm. I need to do fftshift in simulink but there is no fftshift block avaiable. Is there any way we can do fftshift of the output data from FFT block from DSP HDL toolbox? I am attaching FFT model for reference.
채택된 답변
Walter Roberson
2025년 1월 23일
Fork the fft output. Use https://www.mathworks.com/help/dsp/ref/variableselector.html variable selector block on each of the branches, with Fixed selector. In one of the branches select 1:floor(signal_length)/2 and in the other branch select floor(signal_length)/2+1:signal_length . Now concatenate those two together in reverse order.
This potentially requires hard-coding the signal length.
댓글 수: 3
Walter Roberson
2025년 1월 24일
good point
x = 1:9;
signal_length = numel(x);
fftshift(x)
[x(ceil(signal_length/2)+1:signal_length), x(1:ceil(signal_length/2))]
Paul
2025년 1월 24일
I just realized that this block requires the FFT length to be a power of 2, so the ceil() isn't necessary for this particular use case.
참고 항목
카테고리
Help Center 및 File Exchange에서 Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!