An example of using the complex-to-complex FFT functions.
#include <stdio.h>
#include <stdlib.h>
#define SAMPLES 16
{
{
fprintf(stderr, "Failed to initialise Ne10.\n");
return 1;
}
{
}
{
printf( "IN[%2d]: %10.4f + %10.4fi\t", i, src[i].r, src[i].i);
printf("OUT[%2d]: %10.4f + %10.4fi\n", i, dst[i].r, dst[i].i);
}
return 0;
}