Hi,
I have 2 functions f[x] and g[x] defined.
I would like to compare them by displaying some values. So I build two tables :
tbA = Table[f[x],{x,1,4}]
tbB = Table[g[x],{x,1,4}]
Can I define the "iterations" i.e. {x,1,4} before defining the tables, so as I have not to duplicate them? Thanks for help.