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