Here is list of functions
m = {Function[{x}, x^2], Function[{x}, Log[x]], Function[{x}, Sin[x]]};
(*or if you like little less typing*)
m = {#^2 &, Log[#] &, Sin[#] &};
To use it, an example
Plot[#[x], {x, -1, 1}] & /@ m
(*or*)
Map[Plot[#[x], {x, -1, 1}] &, m]