I wish to locate all local maxima of the function $$f(x,y)=1 + Sinc[8*(x - 1)]*Sinc[10*(y - 1)]$$ on the domain $$\{(x,y):0\leq x\leq 2,0\leq y\leq 2\}.$$ The code only shows one of them:
FindMaximum[{1 + Sinc[8*(x - 1)]*Sinc[10*(y - 1)],
0 <= x <= 2.2 && 0 <= y <= 2.2}, {x, y}]
The following is my dream (but only for one variable function) in which the locations are also marked.
Thanks so much.
