|
[Date Index]
[Thread Index]
[Author Index]
Re: Frameticks and ListLogLinearPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg124014] Re: Frameticks and ListLogLinearPlot
- From: Gabriel Landi <gtlandi at gmail.com>
- Date: Thu, 5 Jan 2012 05:59:33 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201201041006.FAA03473@smc.vnet.net>
I recommend the CustomTicks package.
http://library.wolfram.com/infocenter/Demos/5599/
It's awesome. For me it is almost a part of Mathematica.
However, it uses not the ListLogLinearPlot but only ListPlot. The PDF explain how to change your data to appear logarithmically in both the x and y axes.
To generate logarithmic meshes I use the following functions (practically "copied" from another system)
linspace[d1_, d2_, n_: 100] := N[d1 + (d2 - d1)/(n - 1) Range[0, n - 1]];
logspace[d1_, d2_, n_: 100] := 10^linspace[d1, d2, n];
Best Regards,
Gabriel=
Prev by Date:
JordanDecompose[]
Next by Date:
Re: Mathematica on tablet computer
Previous by thread:
Frameticks and ListLogLinearPlot
Next by thread:
Re: Frameticks and ListLogLinearPlot
|