필터 지우기
필터 지우기

Why does my subtraction yield different results?

조회 수: 2 (최근 30일)
Hylke Dijkstra
Hylke Dijkstra 2023년 8월 28일
답변: William Rose 2023년 8월 28일
I have been working on an analysis and after simplifying my code for speed the results came out differently even though I think I should have obtained the same results.
L = eye(n * c) / (eye(n * c) - A);
x_test = L * F * ones(p , 1);
isequal(eps(x),eps(x_test))
% so x and x_test are equal
x_1 = L * F * ones(p , 1) - (eye(n * c) - A_tilde) \ F_tilde * ones(p , 1);
x_2 = x - (eye(n * c) - A_tilde) \ F_tilde * ones(p , 1);
isequal(eps(x_1),eps(x_2))
The first isequal return me a one while the second isequal returns me a zero.
This means that x_test is equal to x but if I subtract the same vector on the RHS of the minus sign, I get a different result. I am not sure how this is possible. Could anyone point me in the right direction?

채택된 답변

Matt J
Matt J 2023년 8월 28일
편집: Matt J 2023년 8월 28일
isequal(eps(x),eps(x_test))=1 does not establish that x=x_test. You misunderstand what eps() does.
eps(1)
ans = 2.2204e-16
eps(1.1)
ans = 2.2204e-16
isequal(eps(1), eps(1.1))
ans = logical
1

추가 답변 (1개)

William Rose
William Rose 2023년 8월 28일
Can you provide more of your code? Why do you use the eps() function when testing the equality of two numbers or vectors or matrices? The following example shows that two unequal numbers can have equal eps's.
x1=1; x2=x1+1e-8; isequal(x1,x2), isequal(eps(x1),eps(x2))
ans = logical
0
ans = logical
1

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by