Sets all the coordinates.
opt = optimsimplex_setallx(opt, x)
The current simplex object of TSIMPLEX type (tlist).
The coordinates of the vertices.
The optimsimplex_setallx
function sets all the coordinates of all
the vertices. The vertex #k is expected to be stored in x(k, 1:n) 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_getallx(s1); disp(res) x = [ 1. 2. 3. 4. 5. 6. ]; s1 = optimsimplex_setallx ( s1 , x ) res = optimsimplex_getallx(s1); disp(res) s1 = optimsimplex_destroy(s1); | ![]() | ![]() |