
[FitterOp_YfromX]
;
#
//This is derived from FindXY table of Nonlinear Curve Fitting;
const nn=_ThisColNum;
range x=!wcol(nn-1);
op_values 0 x ($(nn):end) -s;


[FitterOp_XfromY]
;
#
//This is derived from FindXY table of Nonlinear Curve Fitting; 
const nn=_ThisColNum;
range y=!wcol(nn-1);
op_values 1 y ($(nn):end) -s;

[FitterOp_ZfromXY]
;
#
//This is derived from FindZ table of Nonlinear Surface Fitting;
const nn=_ThisColNum;
op_values 0 ($(nn-2):$(nn-1)) ($(nn):end) -s; 

///Sophy 8/9/2012 ORG-3509-S1 CALC_X_FROM_Y_AT_SPECIFIED_CONFIDENCE_STANDARD_DEVIATION
[FitterOp_FindXYConf]
;
#
//this is not used, since calculate 95% depends on findxy
const nn = _ThisColNum;
///end CALC_X_FROM_Y_AT_SPECIFIED_CONFIDENCE_STANDARD_DEVIATION
