piddly little changes to fastfir stuff

This commit is contained in:
Mark Borgerding
2004-02-26 02:58:10 +00:00
parent ebd0d360e0
commit 624f8edfd3
2 changed files with 13 additions and 6 deletions

View File

@ -89,9 +89,9 @@ def utilfastfilter(sig,h,nfft,usereal):
open( 'sig.dat','w').write( compfft.dopack(sig,'f',not usereal) )
open( 'h.dat','w').write( compfft.dopack(h,'f',not usereal) )
if usereal:
util = './ffr_float'
util = './fastconvr'
else:
util = './ff_float'
util = './fastconv'
cmd = 'time %s -n %d -i sig.dat -h h.dat -o out.dat' % (util, nfft)
print cmd
ec = os.system(cmd)