 | CVVUBPFilt Method |
Band-pass filter to the specified.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void BPFilt(
CVV vv_i,
CVV vv_o,
double pr_sw,
double pr_lw,
int flen
)
public static void BPFilt(
CVV vv_i,
CVV vv_o,
double pr_sw,
double pr_lw,
int flen
)
Public Shared Sub BPFilt (
vv_i As CVV,
vv_o As CVV,
pr_sw As Double,
pr_lw As Double,
flen As Integer
)
Public Shared Sub BPFilt (
vv_i As CVV,
vv_o As CVV,
pr_sw As Double,
pr_lw As Double,
flen As Integer
)
public:
static void BPFilt(
CVV^ vv_i,
CVV^ vv_o,
double pr_sw,
double pr_lw,
int flen
)
public:
static void BPFilt(
CVV^ vv_i,
CVV^ vv_o,
double pr_sw,
double pr_lw,
int flen
)
static member BPFilt :
vv_i : CVV *
vv_o : CVV *
pr_sw : float *
pr_lw : float *
flen : int -> unit
static member BPFilt :
vv_i : CVV *
vv_o : CVV *
pr_sw : float *
pr_lw : float *
flen : int -> unit
Parameters
- vv_i
- Type: GeoEngine.Core.GXNetCVV
Input VV - vv_o
- Type: GeoEngine.Core.GXNetCVV
Filtered VV - pr_sw
- Type: SystemDouble
Short wavelength cutoff, 0 for highpass - pr_lw
- Type: SystemDouble
Long wavelength cutoff, 0 for lowpass - flen
- Type: SystemInt32
Filter Length, 0 for default length
Remarks
If the short and long wavelengths are <= 0, the input channel
is simply copied to the output channel without filtering.
The wavelengths are in fiducials.
See Also