Fixed-Point Behaviorต้องใช้ความระมัดระวังเมื่อใช้ the Q15 and Q31 versions ของ the Biquad Cascade filter functions. ประเด็นต่อไปนี้ต้องถูกพิจารณา :
• Scaling of coefficients
• Filter gain
• Overflow and saturation
Scaling of coefficients: Filter coefficients ถูกแสดงเป็น fractional values และ coefficients ถูกจำกัดอยู่ในย่าน [-1 +1). The fixed-point functions มี an additional scaling parameter postShift ซึ่งยอมให้ the filter coefficients เกินย่าน [+1 -1). ที่ the output ของ the filter's accumulator เป็น a shift register ซึ่งเลื่อนผลลัพธ์ไป postShift bits.

สิ่งนี้จะปรับขนาดอย่างเป็นหลัก the filter coefficients โดย 2^postShift. ตัวอย่างเช่น, การหา the coefficients
{1.5, -0.8, 1.2, 1.6, -0.9}
เซ็ต the pCoeffs array เป็น:
{0.75, -0.4, 0.6, 0.8, -0.45}
และเซ็ต postShift=1
Filter gain: The frequency response ของ a Biquad filter คือ a function ของ coefficients ของมัน. มันเป็นไปได้สำหรับ the gain ที่ผ่าน the filter เกิน 1.0 หมายความว่า the filter จะเพิ่ม the amplitude ของ certain frequencies. นี้หมายความว่า an input signal ที่มี amplitude < 1.0 อาจให้ผลใน an output > 1.0 และเหล่านี้ถูกทำให้อิ่มตัวหรือโอเวอร์โฟวส์ตามการจัดให้ของ the filter. เพื่อหลีกเลี่ยง behavior นี้ the filter ต้องการถูกปรับขนาดลงเพื่อว่า peak gain ของมัน < 1.0 หรือ the input signal ต้องถูกปรับขนาดลงเพื่อว่าการรวมของ input and filter ไม่โอเวอร์โฟวส์
Overflow and saturation: สำหรับ Q15 and Q31 versions, จะถูกอธิบายแยกต่างหากเป็นส่วนหนึ่งของ the function specific documentation ข้างล่าง