[TOC]

filter

Filter for vectors

Introduction

We consider a filter having the system function:

where , and are real numbers. The function filter is implemented based on the transposed direct form II structure:

filter_structure

For , the difference equations for the above filter are given by

Usages

y = filter(b, a, x, wi)

[y, wf] = filter(b, a, x, wi)

y = filter(b, a, x)

[y, wf] = filter(b, a, x)

y = filter(b, a, x, wi, dim)

[y, wf]= filter(b, a, x, wi, dim)