besselfilteranalog

Applies the analog Bessel filter on the input signal.

Syntax

besselfilteranalog(c1.x, order, choice)

Arguments

c1.x
The x vector (input signal).
order
The order of the Bessel filter (2, 3 or 4),
choice
Choice of the Bessel filter. Options include:
  • 1 - Gain response
  • 2 - Phase response
  • 3 - Group delay response

Example

x = c1.x 
y = besselfilteranalog(c1.x, 3, 1).
Result: The function applies a three-pole analog Bessel filter on the input signal c1.x and plots the gain response.

Comments

N/A