| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Signal Processing Toolbox |
| Contents | Index |
| Learn more about Signal Processing Toolbox |
Hd = dfilt.dfsymfir(b)
Hd = dfilt.dfsymfir
Hd = dfilt.dfsymfir(b) returns a discrete-time, direct-form symmetric FIR filter, Hd, with numerator coefficients b.
Hd = dfilt.dfsymfir returns a default, discrete-time, direct-form symmetric FIR filter, Hd, with b=1. This filter passes the input through to the output unchanged.
Note Only the first half of vector b is used because the second half is assumed to be symmetric. In the figure below for an odd number of coefficients, b(3) = 0, b(4) = b(2) and b(5) = b(1), and in the next figure for an even number of coefficients, b(4) = b(3), b(5) = b(2), and b(6) = b(1). |


The resulting filter states column vector for the odd number of coefficients example above is
![]()
Specify a fifth-order direct-form symmetric FIR filter structure for a dfilt object, Hd, with the following code:
b = [-0.008 0.06 0.44 0.44 0.06 -0.008]; Hd = dfilt.dfsymfir(b) Hd = FilterStructure: 'Direct-Form Symmetric FIR' Numerator: [-0.0080 0.0600 0.4400 0.4400 0.0600 -0.0080] PersistentMemory: false
Specify a fourth-order direct-form symmetric FIR filter structure for a dfilt object, Hd, with the following code:
b = [-0.01 0.1 0.8 0.1 -0.01]; Hd = dfilt.dfsymfir(b) Hd = FilterStructure: 'Direct-Form Symmetric FIR' Numerator: [-0.0100 0.1000 0.8000 0.1000 -0.0100] PersistentMemory: false
dfilt, dfilt.dfasymfir, dfilt.dffir, dfilt.dffirt
![]() | dfilt.dffirt | dfilt.fftfir | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |