Questions about fixed-point arithmetic, done using a set number of decimal places.
I am trying to create an application that stores stock prices with high precision. Currently I am using a double …
c fixed-pointI know it's really stupid question, but I don't know how to do this in bash: 20 / 30 * 100 It should be 66.67 but …
bash floating-point rounding fixed-pointI want to store 3.50 into a mysql table. I have a float that I store it in, but it stores …
mysql floating-point currency fixed-pointIn C++, what's the generic way to convert any floating point value (float) to fixed point (int, 16:16 or 24:8)? EDIT: For …
c++ fixed-pointI have been trying for the last three days to understand the exact differences between floating and fixed point representations. …
floating-point fixed-pointI was wondering if anyone here knows of any good resources for fixed point math in c#? I've seen things …
c# math fixed-pointI am looking for a free C++ fixed point library (Mainly for use with embedded devices, not for arbitrary precision …
c++ math fixed-pointI've got a fixed point class (10.22) and I have a need of a pow, a sqrt, an exp and a …
c++ c logarithm fixed-point expIn fixed point math I use a lot of 16bit signals and perform multiplication with 32bit intermediate results. For example: …
c math types multiplication fixed-pointHow to convert a "32-bit signed fixed-point number (16.16)" to a float? Is (fixed >> 16) + (fixed & 0xffff) / 65536.0 ok? What …
floating-point fixed-point