fixedpointformat

The Art of Representing Floating-Point Numbers as Integers

Have you been using float or double variables to perform mathematical operations on embedded systems without a Floating-Point Unit (FPU)? You are doing it wrong! Thatā€™s incredibly inefficient. UseĀ fixed-point representation instead. An FPU isĀ an hardware block specially designed to carry on arithmetic operations on floating point numbers. Even though the C/C++Ā code may work without an […]

The Art of Representing Floating-Point Numbers as Integers Read More Ā»