vote up 0 vote down star

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

flag
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

1 Answer

vote up 5 vote down check

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|flag
Thanks, that's what I was looking for – KornP Jan 7 '09 at 22:14

Your Answer

Get an OpenID
or

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