Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

6th order Hilbert transform

Discussion

This subsystem has 2 inputs and 2 outputs. The input pin is named 'in' and the output pins are named 'out1' and 'out2'. The input pins can be of arbitrary dimension and the size of the output pins equal the size of the input pins. The module operates on multichannel signals. The filters are designed so that $\angle(out1)-\angle(out2) = 90~degrees.$ Each filter is a cascade of 6 1st order allpass filters. Internally, pairs of first order allpass filters are combined and implemented as second order Biquad stages.

The subsystem requires two scratch buffers. The size of the scratch buffers equals the size of the input.Filter with 3 dB/octave roll off

Type Definition

-Not Shown-

Pins

Input Pins

Name: inRealin

Description: Audio Input for real valued signalsinput

Data type: float

Channel range: Unrestricted

...

Sample rate range: Unrestricted

Complex support: Real

Name: inImag

Description: Audio Input for imaginary valued signals

Data type: float

Channel range: Unrestricted

Block size range: Unrestricted

Sample rate range: Unrestricted

Complex support: Real

Output Pins

Name: outReal

Description: Audio output for real valued signals

Data type: float

Name: outImagout

Description: Audio output for imaginary valued signals

Data type: float

Scratch Pins

Channel count: 1

Block size: 32

Sample rate: 48000

MATLAB Usage

File Name: hilbertpink_filter_subsystem.m

Code Block
 SYS=hilbertpink_filter_subsystem(NAME)
 Implements a Creates a 2-input 2-output module which implements a 12th order Hilbert
 transformfilter with a 3 dB/octave rolloff.  This is the same
 response as pink noise.  Internally, the subsystem uses an 8th order
 Biquad Cascade module.  Arguments:
    NAME - name of the module.

...