I'd like to express the function
F = Function[{#2[[1]] + #1[[2]]/#1[[1]], #2[[2]] + 1/#1[[1]]}]
using explicit formal parameters.
I've tried G = Function[{{a, b}, {c, d}},{c + b/a, d + 1/a}]
but this doesn't seem to work. Can anyone tell me how to do this?
g[{{a_, b_}, {c_, d_}}] := {c + b/a, d + 1/a}? – Marius Ladegård Meyer May 30 '16 at 23:03g[{a_, b_}, {c_, d_}] := {c + b/a, d + 1/a}), but I want to do it anonymously with explicit parameters. – pdmclean May 30 '16 at 23:14