Fixed Point Visualization
A tool for exploring fixed-point integer representations, with configurable integer and fractional bit widths.
About Fixed-Point Numbers
Fixed-point numbers represent fractional values using integer arithmetic by allocating a fixed number of bits to the fractional part. For example, with 8 integer bits and 8 fractional bits:
- The value
3.25is stored as832(3 × 256 + 0.25 × 256) - In binary:
00000011.01000000 - In hex:
0x0340
This representation is commonly used in embedded systems, digital signal processing, and situations where floating-point arithmetic is unavailable or too expensive.