I'm trying to write a program that will iterate a 2 dimensional function (I think I have that part fine). The problem I'm having is to give as input all the values in a set range. To be more specific:
I want the iteration to happen for every initial condition such that x = [-2.5, 2.5] and y = [-2.5, 2.5]. (So it iterates when (x, y) = (-2.5, -2.5), and again when (x, y) = (-2.5, -2.25), and again for (-2.25, -2.5), and so on for the entire range)
Any advice?
I want the iteration to happen for every initial condition such that x = [-2.5, 2.5] and y = [-2.5, 2.5]. (So it iterates when (x, y) = (-2.5, -2.5), and again when (x, y) = (-2.5, -2.25), and again for (-2.25, -2.5), and so on for the entire range)
Any advice?
Comment