I have created a function list
F = Table[f[x], {f, {Sin, Cos}}]
and, as expected,
In[119]:= F[[2]]
Out[119]= Cos[x]
Now, I want to evaluate, say, the second function at a given value (x=1), but this doesn't work as it would for a normal function:
In[120]:= F[[2]][1]
Out[120]= Cos[x][1]
How can I do that? Thanks!
xand leavefas a pure function :Table[f, {f, {Sin, Cos}}]. – b.gatessucks Feb 16 at 12:46