I have list of pure functions (All functions are InterpolatingFunction) i.e
{{a, b}, {c, d}, {e, f}, ...} and I would like to end up with
{ (a[#]/b[#])&, (c[#]/d[#])&,(e[#]/f[#])&,...} the closest I have got is to do
(Divide @@ Through[#[x]]) & /@ {{a, b}, {c, d}, {e, f}} {a[x]/b[x], c[x]/d[x], e[x]/f[x]}
but these are not pure functions.
