MathGroup Archive 2000

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

Search the Archive

RE: Simple Query

  • To: mathgroup at smc.vnet.net
  • Subject: [mg24736] RE: [mg24703] Simple Query
  • From: "David Park" <djmp at earthlink.net>
  • Date: Wed, 9 Aug 2000 02:31:38 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

Ken,

You could use Frame:

Plot[Sin[x], {x, 0, 8},
    Frame -> True,
    FrameLabel -> {x, y}];

If you don't want the top and right edges on the frame, you could try
something like this:

Plot[Sin[x], {x, 0, 8},
    Frame -> {Automatic, Automatic, None, None},
    FrameLabel -> {x, y},
    Axes -> None];

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/

> -----Original Message-----
> From: Ken Rice [mailto:kmr1004 at hermes.cam.ac.uk]
To: mathgroup at smc.vnet.net
>
> Dear All,
>
> Does anyone know how to get Axes Labels centered, rather than appearing on
> the ends of axes? The manual talks about 'default' settings but not, so
> far as I can figure, how to change them.
>
> Many thanks
>
> Ken
>
> _____________________________________________________
> Kenneth Rice
> Churchill College              MRC Biostatistics Unit
> Storey's Way                  Inst. of  Public Health
> Cambridge                   Forvie Site, Robinson Way
> CB3 0DS                            Cambridge, CB2 2SR
> Tel: (+44) 01223-517-361          (+44) 01223-330-367
> E-mail: kmr1004 at cam.ac.uk
>
>
>



  • Prev by Date: Re: Annoying Little Problem
  • Next by Date: ArcCos[]
  • Previous by thread: Re: Simple Query
  • Next by thread: Re: Simple Query