|
From: Ethan M. <eam...@gm...> - 2018-04-09 16:55:41
|
On Mon, Apr 9, 2018 at 9:39 AM, Patrick Dupre <pd...@gm...> wrote: > Hello, > > I do not think that it answer to my question. > > I want > f (g1, g2, x) = g1 (x) * g2 (x) > while g1 and g2 are not defined, > and then > f1(x)= ... > f2(x)= ... > and then > f(f1, f2, x) > which should do: > f1(x) * f2(x) > or > f(f11,f22,x) > which should do > f11(x) * f22 (x) > > Yes. But in gnuplot's notation that would be. f1(x) = ... f2(x) = ... f11(x) = ... f22(x) = ... f(x) = g1(x) * g2(x) first call: g1(x) = f1(x); g2(x) = f2(x); f(x) second call: g1(x) = f11(x); g2(x) = f22(x); f(x) That is the same as you showed except that you have to use the names g1 g2 in the original definition as placeholders. |