RelaxISPlugin_ResultEvaluatorPreTransformXValue Method |
The pre-transformation is applied to the x-data coming from the result preview plot. E.g. the
XYFunction(Double, Double) will only see the transformed values as the X-Parameter
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public virtual double PreTransformXValue(
double XInput
)
Public Overridable Function PreTransformXValue (
XInput As Double
) As Double
Dim instance As RelaxISPlugin_ResultEvaluator
Dim XInput As Double
Dim returnValue As Double
returnValue = instance.PreTransformXValue(XInput)
Parameters
- XInput Double
- The X-value as it is coming from the result preview plot
Return Value
DoubleThe transformed X-value
Remarks If you override this function, also override
PreTransformXDescription to give the user information about the transformation.
The pre transformations allows you to handle recalculation of values that the user would have had to do manually, like taking ln(y) before using the VFT (logarithmic) model.
See Also