Difference between value of sum obtained from program as compared to and the one obtained from command window
조회 수: 1 (최근 30일)
이전 댓글 표시
I am adding four very small numbers in my program. The issue I am facing is the sum obtained from the program "obj" is coming out to be different than when I add the same four numbers in the command window. Why is the sum getting calculated wrongly when I run the program? How to fix it?
The green box displays the expected value of the sum while the red box has the incorrect result of adding I1t, I2t, I3t and I4t.
댓글 수: 4
Stephen23
2024년 1월 21일
"The issue I am facing is the sum obtained from the program "obj" is coming out to be different than when I add the same four numbers in the command window."
The only issue here is that you are adding different numbers.
"Why is the sum getting calculated wrongly when I run the program?"
It is not wrong: when you add different numbers you will get a different result:
sum([-0.001335458063828,0.000057425539310,0.000971336765721,0.000306708780422])
sum([-0.0013,5.7426e-5,9.7134e-4,3.0671e-4])
So far absolutely no surprises.
"How to fix it?"
What is broken?
If you want to add exactly the same numbers then you will need to add exactly the same numbers. Adding exactly the same numbers does NOT mean adding some other numbers with a much lower precision.
답변 (1개)
Sai Teja G
2024년 1월 21일
Hi Chinmay,
I understand that you are attempting to add four numbers using two distinct methods. Let's execute both approaches now to comprehend the differences between them.
Case 1:
I1t = -0.001335458063828;
I2t = 0.000057425539310;
I3t = 0.000971336765721;
I4t = 0.000306708780422;
%obj = 0.000000013021625
obj=I1t+I2t+I3t+I4t
Case 2:
I1t = -0.0013;
I2t = 0.000057426;
I3t = 0.00097134;
I4t = 0.00030671;
%obj = 3.5476e-05
obj=I1t+I2t+I3t+I4t
Now you can clearly discern the difference between the two additions due to the variance in precision. This is the reason why you received different outputs in both cases. I hope this clarifies your doubt!
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!