0

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?

jrive
  • 187
  • 7

1 Answers1

0

Here is your table:

Table[x, {x, 10^Range[0, 4, 1/100]}]
Felix
  • 3,871
  • 13
  • 33
  • Wait, why aren't you just doing 10^Range[0, 4, 1/100]? – march Feb 28 '17 at 05:23
  • 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
  • works like a charm. Thank you. I understand it now. Excellent. – jrive Feb 28 '17 at 17:22