fixed scaling for short real

moved fft.py from ./ to sample_code
This commit is contained in:
Mark Borgerding
2003-12-14 05:13:11 +00:00
parent 559c14b49b
commit 573536f48f
14 changed files with 96 additions and 244 deletions

View File

@ -95,5 +95,5 @@ void kf_work(
/* a debugging function */
static void pcpx( kiss_fft_cpx * c)
{
fprintf(stderr,"%g + %gi\n",c->r,c->i);
fprintf(stderr,"%g + %gi\n",(double)(c->r),(double)(c->i) );
}