ErrorCombination:
--------------------------------------------------------------------------
Combine errors given a function.
The error vector e corresponds to
the state vector x. y = fun(x,d). Example 2.15 from the reference is
given.
--------------------------------------------------------------------------
Form:
[eAbs, eSRSS, absA] = ErrorCombination( fun, x, e, d )
--------------------------------------------------------------------------
------
Inputs
------
fun (1,:) y = f(x);
x (:,1) Nominal measurement
e (:,1) Error on each measurement
d (1,1) Data structure to pass to fun
-------
Outputs
-------
eAbs (1,1) Absolute error
eSRSS (1,1) Square root of the sum of the squares
absA (:,1) df/dxx
--------------------------------------------------------------------------
Children:
Math: Analysis/Jacobian