Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

A weird quirk with numerical for-loops and decimal increments. What's happening?

Asked by
XAXA 1569 Moderation Voter
9 years ago

As some of you may know, doing a for loop like this:

1for i = 1, 2, 0.1 do
2       print(i)
3end

would print:

011.0
021.1
031.2
041.3
051.4
061.5
071.6
081.7
091.8
101.9

because of floating-point rounding errors. However, when I set the start and end conditions to 0 and 1, like this:

1for i = 0, 1, 0.1 do
2       print(i)
3end

it correctly terminates at 1:

010.0
020.1
030.2
040.3
050.4
060.5
070.6
080.7
090.8
100.9
111.0

This only seems to be the case when the increment is 0.1 (or when it's a multiple of 0.5^n) and start/end is 0, 1, respectively. When I set it to 0.01, it terminates at 0.99. Furthermore, when I work backwards, from 1 to 0 with a decrement of -0.1, it terminates at a very small number (that's not quite 0):

011.0
020.9
030.8
040.7
050.6
060.5
070.4
080.3
090.2
100.1
111.3877787807814e-16

It looks like this only ever terminates correctly when the start, end, and increment is a multiple of 0, 1, and 0.1, respectively:

1for i = 0, 3, 0.3 do
2       print(i)
3end

prints:

010.0
020.3
030.6
040.9
051.2
061.5
071.8
082.1
092.4
102.7
113.0

My question is: is this a quirk with this particular numeric for-loop, or is there something else going on?

Answer this question