 
 
 
 
 
 
Re: LogLinearPlot: plot point distance
- To: mathgroup at smc.vnet.net
- Subject: [mg31485] Re: [mg31471] LogLinearPlot: plot point distance
- From: BobHanlon at aol.com
- Date: Thu, 8 Nov 2001 04:54:21 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2001/11/7 6:42:55 AM, ulbrich at biochem.mpg.de writes:
>when I want to plot
>
>LogLinearPlot[x/(1+x^2),{x,1*^-3,1*^3},PlotRange->All],
>
>Mathematica doesn't seem to adapt the plot point distance
>to the logarithmic scale.
>Does anyone know how to solve the problem?
>(Ok, LogLinearListPlot would be a solution, but something else...?)
>
Needs["Graphics`Graphics`"];
LogLinearPlot[x/(1+x^2),{x,1*^-3,1*^3}, 
    PlotRange -> All, PlotPoints -> 1250];
DisplayTogetherArray[
    Plot[x/(1+x^2),{x,0,1.5}, PlotRange -> All], 
    LogLinearPlot[x/(1+x^2),{x,1,1*^3}, PlotRange -> All], 
    ImageSize -> 450];
Bob Hanlon
Chantilly, VA  USA

