Returns the equivalent low-pass synthesis waveform of a cascade of filters, given the syhthesis waveform of the previous stage. This is the result of upsampling 'in' by 2, and concolving it with the low-pass synthesis waveform of the filter. The length of the returned signal is 2*in_l+lp_l-2, where in_l is the length of 'in' and 'lp_l' is the lengthg of the low-pass synthesis filter.
The length of the low-pass synthesis filter is getSynLowNegSupport()+getSynLowPosSupport().
シンタックス
'宣言
Public Function getLPSynWaveForm( _
ByVal () As System.Single, _
ByVal () As System.Single _
) As System.Single()
'使用法
Dim instance As AnWTFilter
Dim in() As System.Single
Dim out() As System.Single
Dim value() As System.Single
value = instance.getLPSynWaveForm(in, out)
public System.float[] getLPSynWaveForm(
System.float[] ,
System.float[]
)
パラメータ
- in
- The synthesis waveform of the previous stage.
- out
- If non-null this array is used to store the resulting signal. It must be long enough, or an IndexOutOfBoundsException is thrown.
参照