Re: LogLinearPlot: plot point distance
- To: mathgroup at smc.vnet.net
- Subject: [mg31490] Re: LogLinearPlot: plot point distance
- From: Erk Jensen <Erk.Jensen at cern.ch>
- Date: Thu, 8 Nov 2001 04:54:30 -0500 (EST)
- Organization: CERN http://www.cern.ch
- References: <9sb4i7$e38$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Max Ulbrich wrote: > > Hi, > > 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...?) > > Max > ulbrich at biochem.mpg.de I don't know, but could you not consider to use a normal plot with x=10^p; Plot[x/(1+x^2),{p,-3,3}] Otherwise, this heck works: x=10^p; LogLinearListPlot[Table[{x,x/(1+x^2)},{p,-3,3,.05}],PlotJoined->True] Ciao -erk-