radix 5 doesn't work, but I thik it should.

just a checkpoint commit
This commit is contained in:
Mark Borgerding
2003-11-01 16:48:33 +00:00
parent 8ac63adc77
commit 85764e6437
2 changed files with 69 additions and 25 deletions

View File

@ -43,9 +43,9 @@ void fft_file(FILE * fin,FILE * fout,int nfft,int isinverse,int useascii,int tim
if (useascii) {
int i;
for (i=0;i<nfft;++i)
fprintf(fout, "(%g,%g) ", (double)buf[i].r,(double)buf[i].i);
fprintf(fout, "(%g,%g) ", (double)bufout[i].r,(double)bufout[i].i);
}else{
fwrite( buf , sizeof(kiss_fft_cpx) , nfft , fout );
fwrite( bufout , sizeof(kiss_fft_cpx) , nfft , fout );
}
}
free(st);