Sets all the function values.
opt = optimsimplex_setallfv(opt, fv)
The current simplex object of TSIMPLEX type (tlist).
A row vector of function values.
The optimsimplex_setallfv
function sets all the function values of
all the vertices. The vertex #k is expected to be stored in fv(k) with k = 1 to nbve.
simplex = [ 3. 0. 0. 4. 1. 0. 5. 0. 2. ]; s1 = optimsimplex_new (); s1 = optimsimplex_setall(s1, simplex); res = optimsimplex_getallfv(s1); disp(res) s1 = optimsimplex_setallfv ( s1 , [1. 2. 3.]' ); res = optimsimplex_getallfv(s1); disp(res) s1 = optimsimplex_destroy(s1); | ![]() | ![]() |