If I have a function:
f[x_, y_, z_, d_] = 4 x + y + z + d;
and made lists for f for different values of the free parameters x,y,z,d, by
T := Table[f[x, y, z, d], {x, 2, 5, 1}, {y, 2, 6, 2}, {z, 5, 10, 1}, {d, 3, 7, 1}]
How to plot f[x, y, z, d] versus any coulomb of the table, i.e., x, y, z or d ..
** Edit **
So why ListPlot dosn't work if I one more than two varibles change, i.e., for
T = Table[{x, If[-50 < DC[x, y] < 50, sigma[x, y, z, d]]}, {x, -5, -2, 1}, {y, 2, 6, 1}, {z, 6, 9, 1}, {d, 2, 9, 1}];
ListPlot[T] stuck ..
Comments
Post a Comment