How to calculate IIR coefficient from filterDesigner
35 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi i am newbie and i am using filterDesiner command to generate an IIR filter. After finishing design filter with Filter Designer window, my result is as below:

And i generated a header C code file and my result is as below:

And i do not know how to convert my result to the coefficient i need. My coefficient i need is the coefficient in the equatation:
y(n) = b0*x(n) + b1*x(n-1) ... + bM*x(n-M) - a1*y(n-1) - ... - aN*y(n-M)
I need a table of [b0 .... bM] and [a1 ... aM].
0 comentarios
Respuestas (2)
Sriram Tadavarty
el 23 de Mzo. de 2020
Hi Thanah,
To export the filiter coefficients, you can try the following as suggested here https://www.mathworks.com/help/signal/examples/introduction-to-filter-designer.html#FDAToolExample-8
Hope this helps.
Regards,
Sriram
2 comentarios
Sriram Tadavarty
el 24 de Mzo. de 2020
Editada: Sriram Tadavarty
el 24 de Mzo. de 2020
Hi,
You are right. For the IIR filter, the coefficients you get is in the form of SOS and G. To convert those in to filter numerator and denominator, you can try sos2tf function, which provides the required coefficients.
Hope this helps.
Regards,
Sriram
James Pollard
el 10 de Nov. de 2021
Hi Thanh,
If you haven't already solved this problem by now, please see attached an Arduino library I wrote, which takes the outputted 'fdacoefs.h' file and realises it into an IIR filter.
If you study the fdacoefs.h file, you will notice that the 'num' array holds the B matrix coefficients and, likewise, the 'den' array holds both the A and S matrix coefficients.
If you realise this into simulink, you will find a block model of how these values are used. If this doesn't fit your equation model, then you should be able to adapt it.
0 comentarios
Ver también
Categorías
Más información sobre Filter Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
