If we have k=1:n, and then we put k in a function so we get fk=f(tk) for some values of tk, when I apply the program I get just fk for each value of k, it is not named by f1, f2.
Here is the statements
for k=1:n
t=linspace(0,0.25)
tk=t.*(k-1)/n
f=inline('x.^0.2')
fk=f(tk)