Using solve block with multiple input values
This is an embarrassing question because I think I used to know the answer. I have a function f(x,y), and am using a
solve block like this:
x :=1 y:= 2
Given f(x,y) =0 y=Find(y) (using <ctrl>=, of course)
So far, so good, and the solver finds the solution, no problem.
Now I want to do the same thing for a whole set of values for x. I vaguely remember that one can't used indexed
variables in a solve block. But I'm setting up x as an array of values, and setting the first guess y to also be an
array of the same size, Then I pass both arrays to the solve block. I tried this with a much simpler function y = exp(x)
and it worked just fine. But on my real problem, the solve block either says, "No solution found," or gives me a vector of
results that are wrong.
If I pass the individual elements of x, one at a time, it works fine and I get the right answers. But needless to say, I'd
rather not run the solve block 100 times to get the points on my braph.
What am I doing wrong?

