Defines a set of function to convert number between fixed and floating point representations
Project description
Functions to convert numbers between fixed and floating point representation as experienced by simulink users. Permits conversion of 8, 16 and 32 bit representation of signed and unsigned decimal numbers, with or without binary point.
INSTALLATION
Package can be downloaded from the public git repo as:
$ git clone $ python setup.py install
or installed automatically via pypi:
$ pip install fixreal
USAGE
>>> import fixreal >>> fixreal.real2fix(-0.9921875, fixreal.get_conv(8, 7, True)) 129.0 >>> fixreal.real2fix(-3.96875, fixreal.get_conv(8, 5, True)) 129.0 >>> fixreal.real2fix(-127, fixreal.get_conv(8, 0, True)) 129.0 >>> fixreal.real2fix(1.0078125, fixreal.get_conv(8, 7, False)) 129.0 >>> fixreal.real2fix(4.03125, fixreal.get_conv(8, 5, False)) 129.0 >>> fixreal.real2fix(129, fixreal.get_conv(8, 0, False)) 129.0 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 7, True)) -0.9921875 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 5, True)) -3.96875 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 0, True)) -127.0 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 7, False)) 1.0078125 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 5, False)) 4.03125 >>> fixreal.fix2real(0b10000001, fixreal.get_conv(8, 0, False)) 129.0 >>> conv = fixreal.conv_from_name("fix_8_7")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fixreal-0.8.tar.gz
(59.0 kB
view details)
File details
Details for the file fixreal-0.8.tar.gz
.
File metadata
- Download URL: fixreal-0.8.tar.gz
- Upload date:
- Size: 59.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fc55c1fd7900e99a23dc83fbc05a71b33889d403ff11e5d526c309d729cb41e |
|
MD5 | 2b43c85bb7aa82533ba00e0890129013 |
|
BLAKE2b-256 | b0b0c434e7960e5dc8fb658fb9f2ff2c552e7f29d3d62957e5a8ebf159046f3a |