Number systems are mathematical notations for representing numbers using digits or symbols in a consistent manner.
1 dec = 1 f32
1 f32 = 1 dec
Example:
Convert 15 Decimal to IEEE 754 Single Precision:
15 dec = 15 f32
Decimal | IEEE 754 Single Precision |
---|---|
0.01 dec | 0.01 f32 |
0.1 dec | 0.1 f32 |
1 dec | 1 f32 |
2 dec | 2 f32 |
3 dec | 3 f32 |
5 dec | 5 f32 |
10 dec | 10 f32 |
20 dec | 20 f32 |
30 dec | 30 f32 |
40 dec | 40 f32 |
50 dec | 50 f32 |
60 dec | 60 f32 |
70 dec | 70 f32 |
80 dec | 80 f32 |
90 dec | 90 f32 |
100 dec | 100 f32 |
250 dec | 250 f32 |
500 dec | 500 f32 |
750 dec | 750 f32 |
1000 dec | 1,000 f32 |
10000 dec | 10,000 f32 |
100000 dec | 100,000 f32 |