I have a table (Vector), where each element is an interpolated function by Interpolation[].
A[t_]:=Table[Interpolation[list[i]],{i,1,n}]] Can I evaluate the vector A for fixed time?
I tried to define the vector A like above defined, and evaluated it by: A[0.1]
But the output is the list of interpolation, but not the value of functions at 0.1.
I tried to evaluated for fixed time the generic element of the A, and it seems work.
How can I solve it?
