synthetize_lpf Method (SynWTFilter)
In This Topic
Reconstructs the output signal by the synthesis filter, recomposing the low-pass and high-pass input signals in one output signal. This method performs the upsampling and filtering with the low pass first filtering convention.
Syntax
'Declaration
Public MustOverride Sub synthetize_lpf( _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Object, _
ByVal As Integer, _
ByVal As Integer _
)
public abstract void synthetize_lpf(
object ,
int ,
int ,
int ,
object ,
int ,
int ,
int ,
object ,
int ,
int
)
Parameters
- lowSig
- This is the array that contains the low-pass input signal. It must be of the correct type (e.g., it must be int[] if getDataType() returns TYPE_INT).
- lowOff
- This is the index in lowSig of the first sample to filter.
- lowLen
- This is the number of samples in the low-pass input signal to filter.
- lowStep
- This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array. See above.
- highSig
- This is the array that contains the high-pass input signal. It must be of the correct type (e.g., it must be int[] if getDataType() returns TYPE_INT).
- highOff
- This is the index in highSig of the first sample to filter.
- highLen
- This is the number of samples in the high-pass input signal to filter.
- highStep
- This is the step, or interleave factor, of the high-pass input signal samples in the highSig array. See above.
- outSig
- This is the array where the output signal is placed. It must be of the same type as lowSig and it should be long enough to contain the output signal.
- outOff
- This is the index in outSig of the element where to put the first output sample.
- outStep
- This is the step, or interleave factor, of the output samples in the outSig array. See above.
See Also