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