MATLAB gives the integer value of subtraction when the difference between numbers is large.
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello everyone. I have a problem in my code, i will show it with an example below:
a=[1;1;1;1];
b=[10^23;10^23;10^23;10^23];
c=a-b
fprintf("%f \n",c)
Results:
c =
1.0e+23 *
-1.000000000000000
-1.000000000000000
-1.000000000000000
-1.000000000000000
-99999999999999991611392.000000
-99999999999999991611392.000000
-99999999999999991611392.000000
-99999999999999991611392.000000
When i take action with matrix it is problematic that MATLAB give the subtraction's results as integer not float, how can i change it?
Thanks for helps.
댓글 수: 0
답변 (2개)
Sulaymon Eshkabilov
2022년 4월 25일
편집: Sulaymon Eshkabilov
2022년 4월 25일
Specify flotaing point format accordingly, e.g.:
a=[1;1;1;1];
b=[10^23;10^23;10^23;10^23];
c=a-b
fprintf("%1999.0f \n",c)
Still it does not display the correct answer. To get a correct display you would need to use these scripts posted here: mathworks.com/matlabcentral/fileexchange/22725-variable-precision-integer-arithmetic
Steven Lord
2022년 4월 25일
What's the distance from the elements of b to the next larger number?
b = 10^23
distance = eps(b)
If you were to add 1 to b, you don't get anywhere close to the next representable floating point number.
c = b + 1;
c == b % true, and no this is NOT a bug!
The distance between b and the next smallest representable floating point number is also much larger than 1, so if you subtract 1 you stay at b.
d = b - 1;
d == b % true and this is NOT a bug either!
Basically what you're doing is handing Elon Musk, Jeff Bezos, or Bill Gates a $1 bill and expecting his net worth to change. It's negligible compared to what they already have. See the "Accuracy of Floating-Point Data" section on this documentation page for more information.
댓글 수: 2
Steven Lord
2022년 4월 25일
This is not just MATLAB behavior. In IEEE double precision 1 is negligible compared to 10^23.
To put that in another perspective, consider something that weighs 1 kilogram, like a 1L bottle of water. Is that negligible compared to Earth's moon (with a mass of 7.3*10^22 kg according to Wikipedia)? For practical purposes, yes.
If b is just a placeholder starting value that you're using to give you an error value that's basically guaranteed to be larger than 0.001 for the first iteration, choose a smaller b.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!