lasp/test/test_fft.c

32 lines
411 B
C

// test_bf.c
//
// Author: J.A. de Jong -ASCEE
//
// Description:
//
//////////////////////////////////////////////////////////////////////
#include "fft.h"
#include "tracer.h"
int main() {
iVARTRACE(15,getTracerLevel());
Fft* fft = Fft_alloc(100000,8);
Fft_fft(fft,NULL,NULL);
Fft_free(fft);
return 0;
}
//////////////////////////////////////////////////////////////////////