Accord.Audio.Filters.HighPassFilter.HighPassFilter C# (CSharp) Method

HighPassFilter() public method

Constructs a new High-Pass filter using the given alpha.
public HighPassFilter ( float alpha ) : System
alpha float Band pass alpha.
return System
        public HighPassFilter(float alpha)
        {
            Alpha = alpha;

            formatTranslations[SampleFormat.Format32BitIeeeFloat] = SampleFormat.Format32BitIeeeFloat;
        }