Digital Signal Processing LibraryVoice LabProgram name: vector_add Language: C In file: vector_lib.c Objective: Add a vector to another Usage: void vector_add(double *vector1, int vector_width, double **vector2); Parameters:
Mathematical Description: v1 + v2 ==> v3 Comments: Routine is used to add a vector to another Code: void vector_add(double *vector1, double *vector2, int vector_width, double **vector3) |
English Version > Documents and tutorials > D.Sc. projects > Routines for DSP > vector_lib >