 | CDUNLFilt Method |
This method applies a non-linear filter to the specified
line/channel and places the output in the output channel.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void NLFilt(
CDB db,
int line,
int i_ch,
int o_ch,
int width,
double tol
)
public static void NLFilt(
CDB db,
int line,
int i_ch,
int o_ch,
int width,
double tol
)
Public Shared Sub NLFilt (
db As CDB,
line As Integer,
i_ch As Integer,
o_ch As Integer,
width As Integer,
tol As Double
)
Public Shared Sub NLFilt (
db As CDB,
line As Integer,
i_ch As Integer,
o_ch As Integer,
width As Integer,
tol As Double
)
public:
static void NLFilt(
CDB^ db,
int line,
int i_ch,
int o_ch,
int width,
double tol
)
public:
static void NLFilt(
CDB^ db,
int line,
int i_ch,
int o_ch,
int width,
double tol
)
static member NLFilt :
db : CDB *
line : int *
i_ch : int *
o_ch : int *
width : int *
tol : float -> unit
static member NLFilt :
db : CDB *
line : int *
i_ch : int *
o_ch : int *
width : int *
tol : float -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - line
- Type: SystemInt32
Line handle - i_ch
- Type: SystemInt32
Channel to filter [<define>DB_LOCK_READONLY</define>] - o_ch
- Type: SystemInt32
Output filtered channel [<define>DB_LOCK_READWRITE</define>] - width
- Type: SystemInt32
Filter Width - tol
- Type: SystemDouble
Filter Tolerance, 0 for 10% of Std. Dev.
See Also