Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
Try removing the explicit argument x and leave f as a pure function : Table[f, {f, {Sin, Cos}}]. – b.gatessucks Feb 16 at 12:46
in the given form you could use replacement: F[[2]]/.x->1 – george Feb 16 at 14:40

1 Answer

your way

   funs = Table[f[x], {f, {Sin, Cos}}]
   funs[[2]] /. x -> 1.
   (*0.540302*)

Another way

   funs = {Sin[#] &, Cos[#] &}
   funs[[2]][1.]
   (*0.540302*)

or

   funs = {Sin[x], Cos[x]}
   funs[[2]] /. x -> 1.0
   (*0.540302*)

or

   funs = {Sin[#] &, Cos[#] &};
   funs[[2]] /@ {1.0, 2.0, 3.0}
   (*  {0.540302, -0.416147, -0.989992}  *)
share|improve this answer
Perfect. Thanks! – Idel Waisberg Feb 16 at 23:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.