Click or drag to resize

RelaxISPlugin_ResultEvaluatorPreTransformYValue Method

The pre-transformation is applied to the y-data coming from the result preview plot. E.g. the XYFunction(Double, Double) should also output the transformed value as Y. You should also override PreTransformYError(Double, Double)!

Namespace: RelaxIS_SDK.Plugins
Assembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax
public virtual double PreTransformYValue(
	double YInput
)

Parameters

YInput  Double
The X-value as it is coming from the result preview plot

Return Value

Double
The 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