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 ?
If
a
is start,c
is end andb
is number of intervals:I used
N
just to see better, what do we have.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
Here is one way:
EDIT
Here is a much shorter and more direct way to get the same: