I needed to generate a list containing logscale ticks between 10^a and 10^b with a < b, however I could not find any convenience functions so far. So I went ahead and did it manually:
# List containing 0.1, 0.2, 0.3, ..., 800, 900, 1000
x = np.arange(0.1, 1.0, 0.1).tolist() +
np.arange(1, 10, 1).tolist() +
np.arange(10, 100, 10).tolist() +
np.arange(100, 1000, 100).tolist()
Is there a single method doing that?