RelaxISPlugin_ResultEvaluatorPreTransformYValue Method |
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public virtual double PreTransformYValue(
double YInput
)
Public Overridable Function PreTransformYValue (
YInput As Double
) As Double
Dim instance As RelaxISPlugin_ResultEvaluator
Dim YInput As Double
Dim returnValue As Double
returnValue = instance.PreTransformYValue(YInput)
Parameters
- YInput 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
PreTransformYDescription 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