[]
A specific version of the synthetize_hpf() method that works on int data. See the general description of the synthetize_hpf() method in the SynWTFilter class for more details.
public abstract void synthetize_hpf(int[] lowSig, int lowOff, int lowLen, int lowStep, int[] highSig, int highOff, int highLen, int highStep, int[] outSig, int outOff, int outStep)
| Type | Name | Description |
|---|---|---|
| int[] | lowSig | This is the array that contains the low-pass input signal. |
| int | lowOff | This is the index in lowSig of the first sample to filter. |
| int | lowLen | This is the number of samples in the low-pass input signal to filter. |
| int | lowStep | This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array. |
| int[] | highSig | This is the array that contains the high-pass input signal. |
| int | highOff | This is the index in highSig of the first sample to filter. |
| int | highLen | This is the number of samples in the high-pass input signal to filter. |
| int | highStep | This is the step, or interleave factor, of the high-pass input signal samples in the highSig array. |
| int[] | outSig | This is the array where the output signal is placed. It should be long enough to contain the output signal. |
| int | outOff | This is the index in outSig of the element where to put the first output sample. |
| int | outStep | This is the step, or interleave factor, of the output samples in the outSig array. |
The general version of the synthetize_hpf() method, it just calls the specialized version. See the description of the synthetize_hpf() method of the SynWTFilter class for more details.
public override void synthetize_hpf(object lowSig, int lowOff, int lowLen, int lowStep, object highSig, int highOff, int highLen, int highStep, object outSig, int outOff, int outStep)
| Type | Name | Description |
|---|---|---|
| object | lowSig | This is the array that contains the low-pass input signal. It must be an int[]. |
| int | lowOff | This is the index in lowSig of the first sample to filter. |
| int | lowLen | This is the number of samples in the low-pass input signal to filter. |
| int | lowStep | This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array. |
| object | highSig | This is the array that contains the high-pass input signal. Itmust be an int[]. |
| int | highOff | This is the index in highSig of the first sample to filter. |
| int | highLen | This is the number of samples in the high-pass input signal to filter. |
| int | highStep | This is the step, or interleave factor, of the high-pass input signal samples in the highSig array. |
| object | outSig | This is the array where the output signal is placed. It should be and int[] and long enough to contain the output signal. |
| int | outOff | This is the index in outSig of the element where to put the first output sample. |
| int | outStep | This is the step, or interleave factor, of the output samples in the outSig array. |