Signal Processing LibraryProgram name: allocate_d_window Language: C In file: window_lib.c Objective: Allocate memory for a double window of window_size size Usage: void allocate_d_window(double **d_window, int window_size); Parameters:
Mathematical Description: Comments: Routine is used to allocate memory for a pointer to point to a window (array of double data) Code: void allocate_d_window(double **d_window, int window_size) |
English Version > Documents and tutorials > D.Sc. projects > Routines for DSP > window_lib >