Computes the standard deviation.
sd = optimsimplex_fvstdev(opt)
The current simplex object of TSIMPLEX type (tlist).
A scalar, the standard deviation.
The optimsimplex_fvstdev
function returns the standard deviation
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 ); sd = optimsimplex_fvstdev ( s1 ); disp(sd) s1 = optimsimplex_destroy(s1); | ![]() | ![]() |