 | CFFTCreateEx Method |
Create a New FFT with detrend and expansion options.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static CFFT CreateEx(
CVV gvv,
double interv,
int trend,
double expansion
)
public static CFFT CreateEx(
CVV gvv,
double interv,
int trend,
double expansion
)
Public Shared Function CreateEx (
gvv As CVV,
interv As Double,
trend As Integer,
expansion As Double
) As CFFT
Public Shared Function CreateEx (
gvv As CVV,
interv As Double,
trend As Integer,
expansion As Double
) As CFFT
public:
static CFFT^ CreateEx(
CVV^ gvv,
double interv,
int trend,
double expansion
)
public:
static CFFT^ CreateEx(
CVV^ gvv,
double interv,
int trend,
double expansion
)
static member CreateEx :
gvv : CVV *
interv : float *
trend : int *
expansion : float -> CFFT
static member CreateEx :
gvv : CVV *
interv : float *
trend : int *
expansion : float -> CFFT
Parameters
- gvv
- Type: GeoEngine.Core.GXNetCVV
VV to transform. - interv
- Type: SystemDouble
Element space interval - trend
- Type: SystemInt32
<define>FFT_DETREND</define> - expansion
- Type: SystemDouble
Minimum expansion %
Return Value
Type:
CFFTFFT Object
Remarks
The detrending options control the removal of a trend from the data
before the FFT is applied. The expansion options control the minimum
data expansion before the FFT is applied.
See Also