Property ALCommonFIRFilter.TALCommonFIRFilter.NumTaps
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALCommonFIRFilter
Contents |
Syntax
Delphi:
property NumTaps : Integer read FNumTaps write SetNumTaps default 41;
C++ Builder:
__property int NumTaps = { read=FNumTaps, write=SetNumTaps, default=41 };
Summary
Number of Taps(Coefficients).
Description
Use this property to specify the desired number of
taps(Coefficients) for the filter.
Delphi example:
ALHighPass1.NumTaps := 41;
C++ Builder example:
ALHighPass1->NumTaps = 41;
Visual C++(MFC/Win32) example:
ALHighPass1.NumTaps = 41;
Visual C++/CLI example:
highPass1->NumTaps = 41;
C# example:
highPass1.NumTaps = 41;
VB example:
HighPass1.NumTaps = 41