Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

for(x in 0.00001:10000) How do I structure the loop to get it to return: 0.00001, 0.0001, 0.001, 0.01, 0.1, 1, 10, 100, 1000, 10000?

question from:https://stackoverflow.com/questions/65895073/looping-through-orders-of-magnitude-in-r

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

No loops are necessary because the exponent function is vectorized, i.e. it automatically accepts multiple values and applies the same operation to each:

10^(-5:4)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...