up vote 0 down vote favorite
1
share [g+] share [fb]

Does anyone know of a library to do fixed point arithmetic in Python? Or, does anyone has sample code?

link|improve this question

75% accept rate
The float type is a built in. Is it possible that you mean decimal or rational arithmetic? If you do mean floating point, could you explain what is different from the built-in that you want? – John Mulder Jan 7 '09 at 21:56
I think he means fixed point. I have to ask why? Because if its for performance, you won't get any. – Pyrolistical Jan 7 '09 at 21:58
I have to write an emulation library for algorithm calculations to be implemented in an FPGA (so, no FP support) – KornP Jan 8 '09 at 18:45
feedback

2 Answers

up vote 6 down vote accepted

If you are interested in doing fixed point arithmetic, the Python Standard Library has a decimal module that can do it.

Actually, it has a more flexible floating point ability than the built-in too. By flexible I mean that it:

  • Has "signals" for various exceptional conditions (these can be set to do a variety of things on signaling)

  • Has positive and negative infinities, as well as NaN (not a number)

  • Can differentiate between positive and negative 0

  • Allows you to set different rounding schemes.

  • Allows you to set your own min and max values.

All in all, it is handy for a million household uses.

link|improve this answer
Thanks, that's what I was looking for – KornP Jan 7 '09 at 22:14
?? The Decimal pkg lets you define the precision but it is base10 precision. You can state 6 digits to the right of the decimal point. For doing hardware modeling you want to define the number of bits, the precision is defined by the number of base2 digits to the right of the binary point. Curious, how the Decimal package was a good solution. – Christopher Felton Aug 25 '11 at 18:39
feedback

The deModel package sounds like what you're looking for.

link|improve this answer
Another fixed-point package is available here – Christopher Felton Aug 25 '11 at 18:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.