Re: best solution?
- To: mathgroup at smc.vnet.net
- Subject: [mg22909] Re: [mg22899] best solution?
- From: BobHanlon at aol.com
- Date: Thu, 6 Apr 2000 02:04:28 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
F[a_, b_, c_, x_] := a *Sin[b *x + c]
k = {{a1, b1, c1}, {a2, b2, c2}, {a3, b3, c3}};
F[Sequence @@ #, x] & /@ k
{a1*Sin[c1 + b1*x], a2*Sin[c2 + b2*x], a3*Sin[c3 + b3*x]}
Bob Hanlon
In a message dated 4/4/2000 11:05:46 PM, peter.weijnitz at perimed.se writes:
>I have a function e.g F[a,b,c,x] =a Sin[b x +c] and a number of parameter
>triplets
>k={{a1,b1,c1},{a2,b2,c2},{a3,b3,c3},....}.
>I would like to feed my function the parameter values in an good and simple
>way, how?
>
>(Picking out the elements like k[[3,2]]=b3 e.t.c is not what I want.)
>