Hello,
i have a structure, which is of a form
Do[Module[{parameters initiation.....},
x=some function with respect to g];
Print[x], {g, {1, 2,3,4,5}}]
The above gives sequentially the solution in scalar values.
Instead, i would like to have the result (incrementally) in a list. How can this happen?
Thank you in advance