Digital Signal Processing LibraryVoice LabProgram name: vector_multiply Language: C In file: vector_lib.c Objective: Multiply a vector by a constant value Usage: void vector_multiply(double *vector1, double value, int vector_width, double **vector2); Parameters:
Mathematical Description: v1 * c ---> v2 Comments: Routine is used to multiply a vector by a constant Code: void vector_multiply(double *vector1, double value, int vector_width, double **vector2) |
English Version > Documents and tutorials > D.Sc. projects > Routines for DSP > vector_lib >