Table of Contents

Enum FilterType

Namespace
Bonsai.Dsp
Assembly
Bonsai.Dsp.dll

Specifies the type of digital pass filter to apply on a signal.

public enum FilterType

Fields

BandPass = 2

A band-pass filter rejects frequencies outside the specified frequency range, i.e. frequencies below the first cutoff frequency and above the second cutoff frequency are rejected.

BandStop = 3

A band-stop filter rejects frequencies within the specified frequency range, i.e. frequencies between the first cutoff frequency and the second cutoff frequency are rejected.

HighPass = 1

A high-pass filter rejects frequencies below the cutoff frequency.

LowPass = 0

A low-pass filter rejects frequencies above the cutoff frequency.