A specific version of the synthetize_lpf() method that works on float data. See the general description of the synthetize_lpf() method in the SynWTFilter class for more details.
シンタックス
'宣言
Public Overloads MustOverride Sub synthetize_lpf( _
ByVal () As System.Single, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal () As System.Single, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal () As System.Single, _
ByVal As System.Integer, _
ByVal As System.Integer _
)
'使用法
Dim instance As SynWTFilterFloat
Dim lowSig() As System.Single
Dim lowOff As System.Integer
Dim lowLen As System.Integer
Dim lowStep As System.Integer
Dim highSig() As System.Single
Dim highOff As System.Integer
Dim highLen As System.Integer
Dim highStep As System.Integer
Dim outSig() As System.Single
Dim outOff As System.Integer
Dim outStep As System.Integer
instance.synthetize_lpf(lowSig, lowOff, lowLen, lowStep, highSig, highOff, highLen, highStep, outSig, outOff, outStep)
public abstract void synthetize_lpf(
System.float[] ,
System.int ,
System.int ,
System.int ,
System.float[] ,
System.int ,
System.int ,
System.int ,
System.float[] ,
System.int ,
System.int
)
パラメータ
- lowSig
- This is the array that contains the low-pass input signal.
- 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.
- highSig
- This is the array that contains the high-pass input signal.
- 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.
- outSig
- This is the array where the output signal is placed. 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.
参照