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