Re: Non-sequential composition of pure functions
- To: mathgroup at smc.vnet.net
- Subject: [mg127815] Re: Non-sequential composition of pure functions
- From: Ray Koopman <koopman at sfu.ca>
- Date: Thu, 23 Aug 2012 20:51:55 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <k14k00$7fd$1@smc.vnet.net>
On Aug 22, 11:52 pm, Ray Koopman <koop... at sfu.ca> wrote:
> [...]
>
> Out[3]=
> {If[x4 =E2=89=A4 6, 4.52],
> If[x4 =E2=89=A4 6 && x4 =E2=89=A4 0, 4.47],
> If[x4 =E2=89=A4 6 && x4 =E2=89=A4 0 && x5 =E2=89=A4 0, 4.4],
> If[x4 =E2=89=A4 6 && x4 =E2=89=A4 0 && x5 =E2=89=A4 0 && x1 =E2=89=A4 0, 4.02],
> If[x4 =E2=89=A4 6 && x4 =E2=89=A4 0 && x5 =E2=89=A4 0 && x1 =E2=89=A4 0 && x3 =E2=89=A4 0, 4.3]}
Sorry about that hi ascii. It should have been
Out[3]=
{If[x4 <= 6, 4.52],
If[x4 <= 6 && x4 <= 0, 4.47],
If[x4 <= 6 && x4 <= 0 && x5 <= 0, 4.4],
If[x4 <= 6 && x4 <= 0 && x5 <= 0 && x1 <= 0, 4.02],
If[x4 <= 6 && x4 <= 0 && x5 <= 0 && x1 <= 0 && x3 <= 0, 4.3]}