Assignment 5

Q5-2 Use the circular buffer functions to write a C function that accepts a new data value, puts it into the circular buffer, and then returns the average value of all the data values in the buffer.

Q5-12 Unroll the loop below: a. two times

for (i=0; i<32; i++)

  x[i]=a[i]*c[i];