Audio Equalizer Calculator
Peaking EQ (Biquad). Enter sample rate, center frequency, gain (dB), and Q to get normalized coefficients instantly.
How to Use
- Choose your sample rate (e.g., 48000 Hz).
- Enter the center frequency (Hz) for the boost/cut.
- Set gain in dB (positive boosts, negative cuts).
- Enter Q (higher = narrower band). Optional: switch the input mode to bandwidth if you prefer.
- Copy or share coefficients for your DSP / plugin / embedded filter.
Coefficients (Normalized)
Output is normalized by a0, so a0 = 1.
Show Work (step-by-step)
Reference
This tool computes a peaking EQ biquad filter. You’ll typically use it in an IIR form like:
y[n] = b0*x[n] + b1*x[n−1] + b2*x[n−2] − a1*y[n−1] − a2*y[n−2]
- Sample rate (Hz): system DSP rate (e.g., 48 kHz)
- Center frequency (Hz): where boost/cut peaks
- Gain (dB): positive boost or negative cut
- Q: bandwidth shape control (higher = narrower)
f0 < sampleRate/2 (Nyquist).FAQ
What’s the difference between Q and bandwidth?
Q is a “shape” parameter. Bandwidth (often in octaves) is another way to describe how wide the affected range is. This tool can work in either input style, but it always outputs the same biquad coefficients.
Why are coefficients “normalized”?
Many implementations divide all coefficients by a0 so that a0 = 1. That’s what you see here.
Can I use this for a notch filter?
A deep negative gain with a high Q behaves notch-like, but a true notch biquad is a different filter type. Use a dedicated notch biquad tool when precision matters.
Tool Info
Last updated:
Updates may include improved formatting presets, edge-case handling, and additional export formats.