Description
A weight is usually 1/std, where std is the standard deviation
of the current data point.
A weighted residual is given as
w * (yModel - yMeasurement)
During optimization, the sum over squared weighted residuals is minimized.
The displayed chi-square value is the sum over all squared residuals:
chi^2 = sum((w * (yModel - yMeas))^2)
If constraints are used, the optimized chi^2 value may be different
in order to consider the constraints.
Available variables in the formula:
| w | Current value of the weight of a single data point |
| wArray | Array of weights for the current observable |
| yMeas | Current value of the data point |
| yMeasArray | Array of data point values for the current observable |
Internally, the following line is executed:
w = eval(formula)
for each weight, i.e. all data points.
When couples are combined, the weights are set
to 1/(standard deviation) of each data point (either given
by an analytic error model, estimated by PottersWheel, or
given by the user explicitely in the data file).
Applying this function does not affect the original data and
original standard deviation. By calling
pwCombine, all changes
are lost.