Signal Processing LibraryProgram name: free_window Language: C In file: window_lib.c Objective: Free memory allocated for window. Usage: void free_window(int *window); Parameters:
Mathematical Description: Comments: Routine to free memory previously allocated for a window Code: void free_window(int *window) { free(window); return; } |
English Version > Documents and tutorials > D.Sc. projects > Routines for DSP > window_lib >