Why is there no better representation for floating points than sign and magnitude?
- by cambr
We have 2's complement for integers that allows us to perform operations without worrying about the sign. That is a big help at the implementation level.
Similarly we have so many floating point operations and yet we rely on sign and magnitude. What is the reason?
Why can't a 2's complement like system work for floats?