I have a function f(x1,x2) = x1*x2. That is easy enough to plot using ezsurf.
f(x1,x2) = x1*x2
Can I plot f(x1,x2) = x1*x2 = 1? I want to see what specific sets of solutions look like.
f(x1,x2) = x1*x2 = 1
Try using contour:
contour
z = f(x1, x2); contour(x1, x2, z, [1 1]);