setdiff not working for a particular value, bug?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Pelajar UM
am 9 Dez. 2021
Kommentiert: Walter Roberson
am 9 Dez. 2021
Set 1:
R = 1.2;
F = 1.78;
D = 1.29;
M = 0.2
Set 2:
R = 1.2;
F = 2.5;
D = 1.59;
M = 0.5
And here's the function:
V= R/(F*(1/(M)-1)+R);
X = setdiff( 1:0.005:2,D);
err = (abs((((((D-(1-V).*X)./V)).*(X./((((D-(1-V).*X)./V)).*(1./M-1)+X))+(1-(X./((((D-(1-V).*X)./V)).*(1./M-1)+X))).*X)-D)./D)).*100;
[~,imin]=min(err);
New=X(imin);
For set 1, it gives the right value for New = 1.205 but for set 2 it gives New = D = 1.59.
Why is that?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 9 Dez. 2021
not a bug.
D = 1.59;
vec = 1:0.005:2;
[~, idx] = min(abs(vec - D));
vec(idx)
vec(idx) - D
You can see that the closest value to D in vec is about 2.22e-16 less than D.
Your colon operator is operating like this:
start = 1;
stop = 2;
incr = 0.005;
if start > stop
vec = [];
else
current = start;
vec(end+1) = current;
new = current + incr;
if new > stop; break; end
current = new;
end
Now if (1.59 - 1) were exactly divisibile by the binary double precision representation of 0.005 and assuming that start (1.0) is exactly representable in binary double precision, then under those circumstances 1.59 exactly would eventually be reached.
However... the binary double precision representation of 0.005 is 0.005000000000000000104083408558608425664715468883514404296875 exactly. Binary double precision is not able to represent 0.001 exactly . And those differences add up.
The reason that binary double precision is not able to represent 0.001 exactly is the same as the reason that a finite decimal floating point representation cannot exactly represent 1/3 or 1/7 . Suppose that you had a system that stored 10 decimal digits, then 1/3 would be 0.3333333333 . Add another of the same and you would get 0.6666666666 . Add the third value on and you would get 0.9999999999 -- which is not 1.0000000000 ! Algebraic rational 1/3 can only be exactly represented in a finite number of digits if the digit base is divisible by 3, which is not the case for decimal (base 10). Algebraic rational 1/10 can only be exactly represented in a finite number of digits i the digit base is divisible by 10, which is not the case for binary (base 2.)
You need to learn this rule:
Never compare floating point numbers for equality if the floating point numbers might have been calculated different ways. Even just very slight differences in computation like .3 - .2 - .1 versus .3 - .1 - .2 make a difference in floating point calculations.
1 Kommentar
Walter Roberson
am 9 Dez. 2021
By the way, because of floating point round off if you take 1/49*49 then the result is not exactly 1.0, so do not trust visual examination.
Weitere Antworten (1)
Pelajar UM
am 9 Dez. 2021
1 Kommentar
Stephen23
am 9 Dez. 2021
"It can be solved by using smaller steps:"
No, that does not solve the problem. If you want to write robust code then you need to avoid testing for exact equivalence of binary floating point numbers (i.e. avoid SETDIFF, EQ, ISMEMBER, etc.)
Instead compare the absolute difference against a tolerance (selected to suit your data):
abs(A-B)<tol
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!