#include <math.h>
#include <stdio.h>
int main ()
{
uint_t n_length = 4, n_types = 10, i, t;
uint_t lengths[4] = { 8, 10, 15, 16 };
char *method = "default";
char *window_types[10] = { "default",
"rectangle", "hamming", "hanning", "hanningz",
"blackman", "blackman_harris", "gaussian", "welch", "parzen"};
for ( t = 0; t < n_types; t ++ ) {
for ( i = 0; i < n_length; i++)
{
length = lengths[i];
method = window_types[t];
fprintf(stdout, "length: %d, method: %s, window:, ", length, method);
}
}
return 0;
}