Loop with float increments (frange)?

D

Diez B. Roggisch

Hi!

what's the standard way for a "for" loop with float increments?

AFAIK there is no, but you should be easily able to write an frange
yourself:


def frange(from, to, step):
while from < to:
yield from
from += step

for x in frange(10.5, 23.4, 0.3):
print x


Diez
 
T

Tim Peters

[[email protected]]
[Dan Sommers]
Use a while loop instead:

f = initial_value
while f <= final_value:
process(f)
f = f + increment

Note that there is no general guarantee that f will actually be
final_value; see also <http://docs.python.org/tut/node16.html>.

There's no guarantee that the `while` loop will execute "the expected"
number of times either, and it's generally a Bad Idea to do "f +=
increment" inside the loop: the value of f suffers an additional
rounding error on each iteration that way, potentially making it drift
away from "the expected" value more & more as the loop goes on.

Standard careful numeric practice is this way:

n = compute the number of iterations you want to make in total
for i in xrange(n):
process(initial_value + i * increment)

Then each value computed suffers a total of only two rounding errors
(one for the multiply, one for the add), independent of how large `n`
may be, and doesn't get worse as the loop goes on.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top