 | CVVLogLinear Method |
Take the log10 or original value of a VV.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void LogLinear(
double log_min
)
public void LogLinear(
double log_min
)
Public Sub LogLinear (
log_min As Double
)
Public Sub LogLinear (
log_min As Double
)
public:
void LogLinear(
double log_min
)
public:
void LogLinear(
double log_min
)
member LogLinear :
log_min : float -> unit
member LogLinear :
log_min : float -> unit
Parameters
- log_min
- Type: SystemDouble
Minimum value
Remarks
If the data is in the range +/- minimum value,
it is left alone. Otherwise, the result is calculated as
::
d = dMin * (log10(fabs(d)/dMin)+1.0)
Sign is reapplied to d.
Minimum value will be defaulted to 1.0 if it is negative
or 0.
See Also