Floating point accurarcy and COLON

5 views (last 30 days)
I have just been bitten by an odd floating point comparison issue. At the heart of the issue is that I expected to get true for the following test
x = 0:0.1:0.3;
y = 0:0.1:0.4;
isequal(x, y(1:end-1))
Instead
x - y(1:end-1)
ans =
1.0e-16 *
0 0 -0.2776 -0.5551
The help for COLON says J:D:K is the same as [J, J+D, ..., J+m*D] where m = fix((K-J)/D) which I think supports my expectation. It is not quite right since for 0:0.1:0.3, fix((K-J)/D) is 2. I thought possibly COLON was just doing a linspace, but I also get false for
z = linspace(0, 0.3, 4);
isequal(x, z)
Interestingly, for all the cases I have tried I get true for
a = 0;
b = 0.3;
c = 0.1;
x = a:c:b;
isequal(x(end), b)
suggesting COLON somehow fixes the ends, but not in the same way that LINSPACE does.
How does COLON work?
  3 Comments
Sean de Wolski
Sean de Wolski on 16 Nov 2012
Note, you can see the code for linspace
edit linspace
Daniel Shub
Daniel Shub on 16 Nov 2012
@Walter shouldn't methods be true for my first example and not end exactly at "b" in my last example?
@Sean COLON is not using LINSPACE

Sign in to comment.

Accepted Answer

Matt Fig
Matt Fig on 16 Nov 2012
This explains how the colon operator works. It is an interesting read.
Here is a relevant portion:
"To counteract such error accumulation, the algorithm of the COLON operator dictates that:
1. The first half of the output vector (in this example ‘v’) is calculated by adding integer multiples of the step ‘d’ to the left-hand endpoint ‘a’. 2. The second half is calculated by subtracting multiples of the step ‘d’ from the right-hand endpoint."
  6 Comments
Walter Roberson
Walter Roberson on 10 Oct 2017
Royi, you are right. I will see if I can get that restored.
Walter Roberson
Walter Roberson on 17 Oct 2018
As mentioned before, that technical support solution is gone, and so is the Answers page that republished it.
Quoting from there:
Date Last Modified: Friday, April 1, 2011
Solution ID: 1-4FLI96
Product: MATLAB
Reported in Release: No Release
Platform: Windows
Operating System: Windows XP SP2
Subject:
How does the COLON operator work?
Problem Description:
I want to know how the COLON operator works:
For example, in the command
v = a:d:b
I would like to know if the vector 'v' is calculated by repeated addition of multiples of 'd' to a.
Solution:
v = a:d:b is not constructed using repeated addition as that might accumulate round-off errors, as described in the related Solution below: "How do I determine if the error in my answer is the result of round-off error or a bug?".
In fact, this kind of round-off error is inherent to software or hardware systems that perform calculations using floating point numbers. Since floating point numbers have to be represented within a limited number of bits, the result of some calculations is rounded off in order to fit the result into the finite representation (sign, exponent, mantissa) for floating-point numbers.
An example of a number that cannot be represented exactly in binary floating point is the number 0.1, which, while finite in decimal represntation, would require an infinite number of bits to be exactly represented in floating-point notation. For instance, executing the following in MATLAB:
0.1+0.1+0.1 == 0.3
will not return true due to such round-off errors.
To counteract such error accumulation, the algorithm of the COLON operator dictates that:
1. The first half of the output vector (in this example ‘v’) is calculated by adding integer multiples of the step ‘d’ to the left-hand endpoint ‘a’.
2. The second half is calculated by subtracting multiples of the step ‘d’ from the right-hand endpoint.
The COLON operator ensures symmetry of the output vector about its midpoint and also that the round off error is minimized at both endpoints. For example, even though 0.01 is not exactly represented in binary,
v = -1 : 0.01 : 1
consists of 201 floating points numbers centered symmetrically about zero.
For more detailed information on how the COLON operator works, refer to the attached function (COLONOP). This file mimics closely the behavior of the COLON operator.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!