Re: How to find the Max of a Piecewise function
- To: mathgroup at smc.vnet.net
- Subject: [mg90438] Re: [mg90411] How to find the Max of a Piecewise function
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Wed, 9 Jul 2008 04:55:10 -0400 (EDT)
- Reply-to: hanlonr at cox.net
SetAttributes[f, Listable]; f[x_] := Piecewise[{{1, x < 1}, {2, x > 1}}] Max[f[Range[0, 1, .001]]] 1 Bob Hanlon ---- Aaron Fude <aaronfude at gmail.com> wrote: ============= Hi, If f is deined according to f[x_] := Piecewise[{{1, x < 1}, {2, x > 1}}] then Max[f[Range[0, 1, .001]]] does not yield the desired result. What's the proper way to approach this? Thanks! Aaron