How do I create a frequency vector that increments the step size as a percentage of the previous step size? For example, if I wanted to create table, and wanted to span 4 decades with 100 point in each decade, how would I define that?
Asked
Active
Viewed 278 times
1 Answers
0
Here is your table:
Table[x, {x, 10^Range[0, 4, 1/100]}]
Felix
- 3,871
- 13
- 33
-
-
Because the OP wanted to have a table so I provided the code where he only needs to insert his function in place of
x. – Felix Feb 28 '17 at 05:27 -
Thank you, I'll try it later this morning. However, doesn't this make each step 10^(1/100)? I'm looking to make each step 10^(1/100)*(previous step). Still trying it when I get into the office- thanks! – jrive Feb 28 '17 at 12:12
-
PowerRange? – MarcoB Feb 28 '17 at 04:40