Re: How do I put Arrow Heads on the ends of the Axis of my plots?
- To: mathgroup at smc.vnet.net
- Subject: [mg35589] Re: How do I put Arrow Heads on the ends of the Axis of my plots?
- From: timreh719 at yahoo.com.tw (bryan)
- Date: Sun, 21 Jul 2002 01:01:07 -0400 (EDT)
- References: <ah8off$aru$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
barnes at pullman.com (david barens) wrote in message news:<ah8off$aru$1 at smc.vnet.net>... > How do I put Arrow Heads on the ends of the Axis of my plots? Dear barnes: The command Arrow can be used to draw an arrow.But it is in the package of Graphics . We can draw the arrow on the ends of axis by this way : Input[1]: Needs["Graphics`Arrow`"] Plot[Sin[x], {x, -Pi, Pi}, Epilog -> {Arrow[{2, 0}, {1.05Pi, 0}], Arrow[{0, 0}, {0, 1.05}]}]