Precision issue when comparing matlab output with c code output

조회 수: 5 (최근 30일)
Vaishnavi
Vaishnavi 2025년 3월 26일
댓글: Walter Roberson 2025년 3월 26일

I am trying to compare my c code output with matlab output. My results are matching up to 18th decimal points. When both matlab and c compiler uses ieee754 floating point format. Then why am I observing the difference. As matlab by default uses double precision, my c code is also using double data type.

  댓글 수: 6
dpb
dpb 2025년 3월 26일
If identical past the 15-16 digits of DP, though? That's what makes this one hard to figure...OP says agree precisely to 18 decimal places?
Walter Roberson
Walter Roberson 2025년 3월 26일
"18 decimal points" is not necessary the same as 18 digits of precision. For example,
A = 0.0000000000123456789478;
fprintf('%.19f\n', A)
0.0000000000123456789
might seem to be valid to 19 decimal places, if you count starting from the period.

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

답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by