mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-11-15 06:22:55 -05:00
added stride to fft input -- should simplify multi-dimensional FFTs
This commit is contained in:
@ -103,6 +103,14 @@ int main(int argc,char ** argv)
|
||||
case 'r':nrows = atoi(optarg);break;
|
||||
case 'i':isinverse=1;break;
|
||||
case 'R':isreal=1;break;
|
||||
case '?':
|
||||
fprintf(stderr,"usage options:\n"
|
||||
"\t-n NFFT: fft size\n"
|
||||
"\t-r nrows: # rows (implies 2d FFT)\n"
|
||||
"\t-i : inverse\n"
|
||||
"\t-R : real input samples, not complex\n");
|
||||
exit (1);
|
||||
default:fprintf(stderr,"bad %c\n",c);break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user