fix type of length in fft window function

This commit is contained in:
dwarning 2013-08-09 19:09:32 +02:00 committed by rlar
parent e1fa276ddc
commit 0b1bff9fd8
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ void fftFree(void);
// release storage for all private cosine and bit reversed tables
int
fft_windows(char *window, double *win, double *time, double length, double maxt, double span, int order);
fft_windows(char *window, double *win, double *time, int length, double maxt, double span, int order);
// computes some popular window functions
void ffts(double *data, int M, int Rows);

View File

@ -93,7 +93,7 @@ void fftFree(void)
}
int
fft_windows(char *window, double *win, double *time, double length, double maxt, double span, int order)
fft_windows(char *window, double *win, double *time, int length, double maxt, double span, int order)
{
int i;
double sigma, scale;