필터 지우기
필터 지우기

How to store only 3 digits after the decimal point?

조회 수: 398 (최근 30일)
Faez Alkadi
Faez Alkadi 2017년 9월 21일
댓글: Faez Alkadi 2017년 9월 21일
I'm working on R2016a and using round function to get red of the extra digits that I don't need on right side of the decimal point, so I did the following :
x=2.123456789123456789
y=round(x,3),
so I got:
y=2.123000000000000000
But I want it to be (stored) as:
y=2.123
Is what i'm doing write ?
Thank you so much.

채택된 답변

Walter Roberson
Walter Roberson 2017년 9월 21일
편집: Walter Roberson 2017년 9월 21일
MATLAB uses IEEE 754 Binary Double Precision to represent floating point numbers. All floating point scheme that use binary mantissas cannot exactly represent 1/10, just like finite decimal representation schemes cannot exactly represent 1/3 or 1/7 .
IEEE 754 also defined a Decimal Double Precision representation scheme, which can represent 2.123 exactly. However, computing those values in software is much slower. The only systems I know of that implement IEEE 754 Decimal Double Precision in hardware are the IBM z90 series.
If you need a certain specific number of decimal places to be stored, then use rationals with a power-of-10 denominator.
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 9월 21일
No. IEEE 754 Binary Double Precision is able to exactly represent all integers in the range +/- 2^53, but for N digit decimal numbers, only 2^N out of 10^N can be exactly represented. For example, for 3 digits, 0.000, 0.125, 0.250, 0.375, 0.500, 0.625, 0.750, 0.875 -- only 8 exactly representable 3 digit decimals out of 1000.
2.123 is not exactly representable in IEEE 754 Binary Double Precision. The closest exactly representable number is 2.12300000000000022026824808563105762004852294921875
Faez Alkadi
Faez Alkadi 2017년 9월 21일
Thank you !

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

추가 답변 (1개)

James Tursa
James Tursa 2017년 9월 21일
편집: James Tursa 2017년 9월 21일
This is just a display difference. The numbers are the same. E.g.,
>> format long
>> x = 2.123456789123456789
x =
2.123456789123457
>> y = round(x,3)
y =
2.123000000000000
>> z = 2.123
z =
2.123000000000000
>> y == z
ans =
1
>> format short g
>> y
y =
2.123
>> z
z =
2.123
If you want to display the number to three decimal places, e.g.,
>> fprintf(' %.3f\n',y)
2.123
>> fprintf(' %.3f\n',z)
2.123
But keep in mind that 2.123 cannot be represented exactly in IEEE double precision format. The nearest IEEE double precision number to 2.123, converted to an exact decimal representation, is
>> num2strexact(2.123)
ans =
2.12300000000000022026824808563105762004852294921875

카테고리

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