I have this function which as a result returns a point
f[x, y] =
Max[((x - #[[1]])^2 + (y - #[[2]])^2) & /@ Subscript[Rp, A0]];
min = Minimize[{f[x, y], {20 <= x <= 80, 20 <= y <= 80}}, {x, y}]
{576.25, {x -> 34.5, y -> 52.}}
How can I use this point $(x,y)$ as an input ?
sol = Minimize[...]then usesol[[2, All, 2]]. – b.gates.you.know.what Oct 17 '13 at 13:05{x, y}/. Last@sol, More in Common pitfalls awaiting new users. – Kuba Oct 17 '13 at 13:11