MathGroup Archive 2007

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

Search the Archive

Re: FilledLogLinearListPlot: does equivalent exist?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg74281] Re: FilledLogLinearListPlot: does equivalent exist?
  • From: Heiko Damerau <heiko.damerau.news at cern.ch>
  • Date: Fri, 16 Mar 2007 03:22:08 -0500 (EST)
  • Organization: CERN News
  • References: <etcnqb$9i4$1@smc.vnet.net>

Hi Thomas,

     Could this be a solution (certainly not the most elegant on) to 
your problem?

<< Graphics`Graphics`

logPlot1 = LogLinearListPlot[Table[{x, x}, {x, 1, 10}], PlotJoined -> 
True, PlotStyle -> Thickness[0.01], DisplayFunction -> Identity];

logPlot2 = LogLinearListPlot[Table[{x, 2x}, {x, 1, 10}], PlotStyle -> 
PointSize[0.02], DisplayFunction -> Identity];

Show[First[#], Graphics[{GrayLevel[0.8], 
Polygon[Join[Cases[First[First[#]], {x_, y_}, {1, Infinity}], 
Reverse[Cases[First[Last[#]], {x_, y_}, {1, Infinity}]]]]}], First[#], 
Last[#], DisplayFunction -> $DisplayFunction] &[{logPlot1, logPlot2}];

Cheers,
Heiko


Thomas Bohl schrieb:
> FilledListPlot works fine in a lot of situations. I would like to fill 
> the area between two curves in a LogLinearListPlot. How could this be 
> achieved?
> 
> Thanks for any suggestion.
> 
> Kind regards,
> Thomas.
> 



  • Prev by Date: Re: Re: SphericalPlot3D doesn't work
  • Next by Date: Re: Multiple regressions
  • Previous by thread: Re: Mathematica 4.0
  • Next by thread: Re: FilledLogLinearListPlot: does equivalent exist?