I have a function, f, and I am trying to evaluate it at x, y and z:
x = range(60,70)
y = range(0,5)
z = ["type1", "type2"]
results = [f(v,w,j) for v in x for w in y for j in z]
Right now "results" is a long vector, but I would like to get a matrix that looks something like this:
x1 y1 z1 f(x1,y1,z1)
x2 y1 z1 f(x2,y1,z1)
...
x9 y1 z1 f(x9,y1,z1)
x1 y2 z1 f(x1,y2,z1)
x2 y2 z1 f(x2,y2,z1)
...
x9 y2 z1 f(x9,y2,z1)
x1 y1 z2 f(x1,y1,z2)
...
covering all the possible combinations. So far I have tried this:
z = []
for v in x:
for w in y:
for j in z:
z = [v, w, j, f(v,w,j)]
which is giving me the right format, but only evaluating one of the scenarios.
Any guidance is appreciate it . Thanks!