MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

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}]}]


  • Prev by Date: RE: How do I put Arrow Heads on the ends of the Axis of my plots?
  • Next by Date: Re: Limit[Sin[a*x]/(a*x), x -> Infinity]
  • Previous by thread: RE: How do I put Arrow Heads on the ends of the Axis of my plots?
  • Next by thread: Re: How do I put Arrow Heads on the ends of the Axis of my plots?