I saw this question and I would like to know if is possible to use something to solve a problem I have.
I defined list of mathematical object
obj1,obj2,...,objn
And I have a function fun
which does something with these objects
sol1=fun(obj1)
sol2=fun(obj2)
...
soln=fun(objn)
Now what I wanted is use a for loop to calculate all the sol1
. I know I can do it putting all the object on a list but I was wondering if is possible do something else.