Corrected fft matlab code

FFT Butterfly 4-1024 point code
This commit is contained in:
Aleksejs Mirnijs
2019-12-23 13:40:27 +02:00
parent 2ca0dd08ee
commit f1946c3b19
3 changed files with 120 additions and 1 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ end
%% Ploting out
% slowly plot result
figure(5)
for i = 1 : bits
for i = 1 : bits +1
%plot( abs( real_n(i, :) + j.*imag_n(i, :) ) );
plot( abs( stage(i,:) ) );
pause(1);