fix type of length in fft window function
This commit is contained in:
parent
e1fa276ddc
commit
0b1bff9fd8
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue