mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-07-17 20:44:21 -04:00
radix 5 doesn't work, but I thik it should.
just a checkpoint commit
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user