Gets the coordinates of the vertex at given index.
x = optimsimplex_getx(opt, ive)
The current simplex object of TSIMPLEX type (tlist).
An integer, the vectex index.
The coordinates of the point, as a row vector.
The optimsimplex_getx
function returns the coordinates of the
vertex at given index, as a row vector.
simplex = [ 3. 0. 0. 4. 1. 0. 5. 0. 2. ]; s1 = optimsimplex_new (); s1 = optimsimplex_setall ( s1 , simplex ); x1 = optimsimplex_getx(s1, 1); x2 = optimsimplex_getx(s1, 2); x3 = optimsimplex_getx(s1, 3); disp(x1) disp(x2) disp(x3) s1 = optimsimplex_destroy(s1); | ![]() | ![]() |