analyze_lpf(Object,Int32,Int32,Int32,Object,Int32,Int32,Object,Int32,Int32) Method
In This Topic
The general version of the analyze_lpf() method, it just calls the specialized version. See the description of the analyze_lpf() method of the AnWTFilter class for more details.
Syntax
'Declaration
Public Overloads Overrides Sub analyze_lpf( _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer _
)
public override void analyze_lpf(
object ,
int ,
int ,
int ,
object ,
int ,
int ,
object ,
int ,
int
)
Parameters
- inSig
- This is the array that contains the input signal. It must be an int[].
- inOff
- This is the index in inSig of the first sample to filter.
- inLen
- This is the number of samples in the input signal to filter.
- inStep
- This is the step, or interleave factor, of the input signal samples in the inSig array.
- lowSig
- This is the array where the low-pass output signal is placed. It must be an int[].
- lowOff
- This is the index in lowSig of the element where to put the first low-pass output sample.
- lowStep
- This is the step, or interleave factor, of the low-pass output samples in the lowSig array.
- highSig
- This is the array where the high-pass output signal is placed. It must be an int[].
- highOff
- This is the index in highSig of the element where to put the first high-pass output sample.
- highStep
- This is the step, or interleave factor, of the high-pass output samples in the highSig array.
See Also