| Author |
Comment/Response |
Michael
|
09/06/12 9:49pm
Put "list1 = " in front of "Append[list1,...]" and see if that's what you want:
list1 = {{xval, yval}};
For[x = .5, x <= 50, x = x + .5,
sol = Solve[x^2 + y*x == 16, y, Reals];
list1 = Append[
list1, {x, {{y} /. First[sol] /. Table[{C[1] -> m}, {m, 5}]}}];]
Print[list1]
URL: , |
|