对数间距数
我想测试几个强度值。
我需要它们以对数间隔从 1 到 1000。然而我只使用 1, 10, 100, 1000,但我想要更多的数据点,比方说 10。
我怎样才能找到 10 对数间隔Mathematica 中 1 到 1000 之间的数字?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果
a
是开始,c
是结束,b
是间隔数:我使用
N
只是为了看得更好,我们有什么。If
a
is start,c
is end andb
is number of intervals:I used
N
just to see better, what do we have.这是一种方法:
编辑
这是一种更短、更直接的方法来获得相同的结果:
Here is one way:
EDIT
Here is a much shorter and more direct way to get the same:
解方程
x ** 9 = 1000
-- 那么你的数字是:x ** 0
,x ** 1
, ...x ** 9
。注意:其中
x ** y
表示x
的y
次幂Solve the equation
x ** 9 = 1000
-- then your numbers are:x ** 0
,x ** 1
, ...x ** 9
.note: where
x ** y
meansx
to the power ofy