lasp/test/test_fft.c

34 lines
450 B
C
Raw Normal View History

2018-01-29 15:14:50 +00:00
// test_bf.c
//
// Author: J.A. de Jong -ASCEE
//
// Description:
//
//////////////////////////////////////////////////////////////////////
#include "lasp_fft.h"
#include "lasp_tracer.h"
2018-01-29 15:14:50 +00:00
int main() {
setTracerLevel(0);
2018-01-29 15:14:50 +00:00
iVARTRACE(15,getTracerLevel());
Fft* fft = Fft_create(100000);
2018-01-29 15:14:50 +00:00
/* Fft_fft(fft,NULL,NULL); */
2018-01-29 15:14:50 +00:00
Fft_free(fft);
return 0;
}
//////////////////////////////////////////////////////////////////////