I have a function f(x,y) that I wish to evaluate for different values of x and y.
I created two lists for x and y using table:
x = Table[x,{x,1/10,1,1/10}]
y = Table[y,{y,1/100,1/10,1/100}]
This gives me 10 values for x and 10 for y.
Now I want to evaluate my function f(x,y) for...