MathGroup Archive 2002

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

Search the Archive

Re: newbie question - plot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg33411] Re: [mg33388] newbie question - plot
  • From: Tomas Garza <tgarza01 at prodigy.net.mx>
  • Date: Wed, 20 Mar 2002 01:53:23 -0500 (EST)
  • References: <200203190439.XAA16793@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

One possibility is to use the add-on package Graphics`Arrow`. E.g.

In[1]:=
<< Graphics`Arrow`

In[2]:=
Plot[Sin[x], {x, 0, 2*Pi}, Epilog ->
   {Arrow[{0, 0}, {2*Pi, 0}], Arrow[{0, 0}, {0, 1}]}]

You could also profit from David Park's excellent package DrawGraphics,
which you can get for free. I suggest you drop him a note at
djmp at earthlink.net and he will tell you where and how to download it. It is
a very nice contribution to the Mathematica community.

Tomas Garza
Mexico City

----- Original Message -----
From: "Mateusz" <matdob at poczta.onet.pl>
To: mathgroup at smc.vnet.net
Subject: [mg33411] [mg33388] newbie question - plot


> Hello,
>
> What option should I use with the "Plot" command in order to obtain arrows
> for x's and y's.
> I mean: I want axes to be ended with arrows. Help me please. :)
>
> Mateusz
>
>
>



  • Prev by Date: Rolling up some integers
  • Next by Date: Question on FindMinimum
  • Previous by thread: newbie question - plot
  • Next by thread: Re: newbie question - plot