*** empty log message ***

This commit is contained in:
Mark Borgerding 2005-06-24 01:24:20 +00:00
parent 10dbc47ff3
commit 2a758b8ea7

View File

@ -22,7 +22,7 @@ def fft(f,inv):
m = n/p
Fout=[]
for q in range(p): # 0,1
fp = f[q::p]
fp = f[q::p] # every p'th time sample
Fp = fft( fp ,inv)
Fout.extend( Fp )