MathGroup Archive 2007

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

Search the Archive

Re: RegionPlot ignores the AxesLabel Option?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg83338] Re: RegionPlot ignores the AxesLabel Option?
  • From: nigol <dario.buttari at gmail.com>
  • Date: Sat, 17 Nov 2007 05:37:07 -0500 (EST)
  • References: <fhjskh$54a$1@smc.vnet.net>

Removing the Frame and adding the Axes solves the problem:
RegionPlot[y <= x^2, {x, -1, 1}, {y, 0, 1}, Frame -> False,
 Axes -> True, AxesLabel -> {"x", "y"}]

Otherwise you could use FrameLabel instead of AxesLabel:
RegionPlot[y <= x^2, {x, -1, 1}, {y, 0, 1}, FrameLabel -> {"x", "y"}]

Dario


  • Prev by Date: data structures in Mathematica
  • Next by Date: Re: RegionPlot ignores the AxesLabel Option?
  • Previous by thread: Re: RegionPlot ignores the AxesLabel Option?
  • Next by thread: Re: RegionPlot ignores the AxesLabel Option?