Logarithmically spacing number

2019-03-22 00:49发布

I would like to test several values of intensity.

I need them to be spaced logarithmically from 1 to 1000. Yet I just use 1, 10, 100, 1000, but I would like to have more data point, let`s say 10.

How could I find 10 logarithmically spaced number between 1 and 1000 in Mathematica ?

3条回答
男人必须洒脱
2楼-- · 2019-03-22 01:17

If a is start, c is end and b is number of intervals:

{a, b, c} = {1, 10, 1000};
t = (c/a)^(1/b) // N
a*t^Range[b]

1.99526
{1.99526, 3.98107, 7.94328, 15.8489, 31.6228, 63.0957, 125.893, 251.189, 501.187, 1000.}

I used N just to see better, what do we have.

查看更多
叛逆
3楼-- · 2019-03-22 01:28

Solve the equation x ** 9 = 1000 -- then your numbers are: x ** 0, x ** 1, ... x ** 9.

note: where x ** y means x to the power of y

查看更多
劫难
4楼-- · 2019-03-22 01:35

Here is one way:

In[11]:= base = Block[{a}, a /. NSolve[a^9 == 1000, a][[-1, 1]]]
Out[11]= 2.15443

In[13]:= base^Range[0, 9]
Out[13]= {1., 2.15443, 4.64159, 10., 21.5443, 46.4159, 100., 
  215.443,464.159, 1000.}

EDIT

Here is a much shorter and more direct way to get the same:

In[18]:= N[10^Range[0, 3, 1/3]]

Out[18]= {1., 2.15443, 4.64159, 10., 21.5443, 46.4159, 100., 
215.443, 464.159, 1000.}
查看更多
登录 后发表回答