Re: simple question for mathematica tool
- To: mathgroup at smc.vnet.net
- Subject: [mg106854] Re: [mg106817] simple question for mathematica tool
- From: "David Park" <djmpark at comcast.net>
- Date: Mon, 25 Jan 2010 05:06:19 -0500 (EST)
- References: <9956845.1264330262250.JavaMail.root@n11>
Use Piecewise. I don't know what value you want when x is outside the domain
you specified. I used 0.
f[x_] := Piecewise[{{150, 0 < x <= 15}, {x^3, 15 < x <= 24}}, 0]
Plot[f[x], {x, 0, 24},
Frame -> True,
Axes -> False]
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/
From: MANOLIS VOSKAKIS [mailto:emperor_mvs at hotmail.com]
we have an equation tha is divided in to sub equations
f=150 when 0<x15
f=x^3 when 15<x24
how can i create a plot in mathematica??
i want all in 1 graph
thanks alot
manoli