Matlab is not recognizing that two floats are equal although Workspace shows they are

조회 수: 2 (최근 30일)
```
% calculate_line_lengths
line_lengths = calculate_line_lengths(plane_x,plane_y, rect_corners);
% send the above two answers to herons_formula, get 4 areas
four_areas = herons_formula(edge_lengths, line_lengths);
sum_four_areas = sum(four_areas);
if sum_four_areas == rect_area
in_rect = true;
elseif sum_four_areas < rect_area
in_rect = false;
end
```
My code falls into the elseif when it should be going into the if statement as they are equal.
Why?
  댓글 수: 6
Stephen23
Stephen23 2022년 2월 18일
편집: Stephen23 2022년 2월 18일
Where A and B are the two values you wish to compare, and tol is a suitably chosen tolerance value:
abs(A-B)<tol
Jan
Jan 2022년 2월 18일
@Walter Roberson: Until today, the method ismembertol has implemented the tolerance, did never match my needs in real code:
abs(u-v) <= tol*max(abs([A(:);B(:)]))
'DataScale' is not a solution also.

댓글을 달려면 로그인하십시오.

답변 (1개)

Prateek Rai
Prateek Rai 2022년 2월 24일
You can refer to following MATLAB Answers on Why two equal numbers are not equal? to get more idea on why MATLAB is not recognizing that two floats are equal although workspace shows that they are equal.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by