RE: Plot a function
- To: mathgroup at smc.vnet.net
- Subject: [mg47824] RE: [mg47793] Plot a function
- From: "David Park" <djmp at earthlink.net>
- Date: Wed, 28 Apr 2004 06:56:13 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
You will have to work through much of Part I in The Mathematica Book, or
some elementary Mathematica book, to learn the syntax and common commands.
It will save a lot of time if you intend to make much use of Mathematica.
For your plot...
Plot[Sin[x]E^x, {x, 0.5, 1.5}]
or for something a little fancier we can add options...
Plot[Sin[x]E^x, {x, 0.5, 1.5},
Frame -> True,
Axes -> False,
FrameLabel -> {x, y},
PlotLabel -> Sin[x]E^x]
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: oracle [mailto:oracle9i-helpme at mail2me.com]
To: mathgroup at smc.vnet.net
If i want to draw a function
y=sinx*e^x
in x =0.5 to 1.5 [only in this interval ]
How I can do that with mathematica?