mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-11-14 05:52:51 -05:00
*** empty log message ***
This commit is contained in:
@ -22,7 +22,7 @@ def fft(f,inv):
|
|||||||
m = n/p
|
m = n/p
|
||||||
Fout=[]
|
Fout=[]
|
||||||
for q in range(p): # 0,1
|
for q in range(p): # 0,1
|
||||||
fp = f[q::p]
|
fp = f[q::p] # every p'th time sample
|
||||||
Fp = fft( fp ,inv)
|
Fp = fft( fp ,inv)
|
||||||
Fout.extend( Fp )
|
Fout.extend( Fp )
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user