Re: Parameters
- To: mathgroup at smc.vnet.net
- Subject: [mg33129] Re: Parameters
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Mon, 4 Mar 2002 06:04:07 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <a5u7jv$86k$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Table[{a,b,c,1-a-b-c,f[a,b,c,1-a-b-c]},{a,a0,a1,da},{b,b0,b1,db},{c,c0,c1,dc}]
??
Regards
Jens
Sven Richter wrote:
>
> Hi guys,
>
> I've got the following problem:
> I have a function that depends on 4 parameters, f(a, b, c, d), whereby
> a+b+c+d=1.
> Now, I would like that Mathematica gives me table with values for the
> parameters and of course the corresponding f(a,b,c,d). Furthermore, I would
> like to set the step range of the parameters.
> The goal is to have a table like:
>
> a b c d f(a,b,c,d)
> 0.1 0.1 0.1 0.7 0.1324
> 0.1 0.1 0.2 0.6 0.2143
> ....
>
> Thx in advance.
> HAND
> Sven