/* Band-Stop Filter Coefficients Cut From MATLAB B = Columns 1 through 7 -0.0038 0.0000 0.0218 0.0000 -0.0821 0.0000 0.1625 Columns 8 through 14 0.0000 0.8031 0.0000 0.1625 0.0000 -0.0821 0.0000 Columns 15 through 17 0.0218 0.0000 -0.0038 */ /* Here are the 17 coefficients corresponding */ /* to a 16th-order FIR band reject FIR filter */ /* FIR filter obtained using MATLAB FIR1 */ /* Fs = 48 kHz, rejects 9.6k to 14.4KHz */ #define NUMCOEFFS 17 float coeff[NUMCOEFFS] = { -0.0038, 0.0000, 0.0218, 0.0000, -0.0821, 0.0000, 0.1625, 0.0000, 0.8031, 0.0000, 0.1625, 0.0000, -0.0821, 0.0000, 0.0218, 0.0000, -0.0038 };