Computes the variance.
v = optimsimplex_fvvariance(opt)
The current simplex object of TSIMPLEX type (tlist).
A scalar, the variance.
The optimsimplex_fvvariance
function returns the variance
of the function value on the simplex.
s1 = optimsimplex_new (); simplex = [ 3. 0. 0. 4. 1. 0. 5. 0. 2. ]; s1 = optimsimplex_setall ( s1 , simplex ); v = optimsimplex_fvvariance( s1 ); disp(v) s1 = optimsimplex_destroy(s1); | ![]() | ![]() |