A Python library for Q format representation and overflow handling.
Project description
Introduction
Welcome to the qformat Python library, a powerful tool for formatting floating-point numbers into fixed-point representation with Q notation.
This library supports ARM’s Q format, where QI includes the sign bit.
The main function, qformat, allows users to specify the number of integer bits (QI), fractional bits (QF), whether the number is signed or unsigned, and provides flexibility in choosing rounding and overflow handling methods.
Whether you’re working on embedded systems, signal processing, or any application requiring fixed-point representation, qformat is here to streamline the process.
The example below shows pi being converter to the sQ4.8 format, using Truncation as the rounding method:
>>> from qformatpy import qformat
>>> x = 3.141592653589793
>>> result = qformat(x, qi=4, qf=8, rnd_method='Trunc')
>>> result
array([3.140625])
Installation
The qformatpy library is available via PIP install:
python3 -m venv pyenv
source pyenv/bin/activate
pip install qformatpy
Import the package as shown below:
import qformatpy
Example usage
>>> import numpy as np
>>> import qformatpy
>>> test_array = np.array([1.4, 5.57, 3.14])
>>> qformatpy.rounding(test_array, 'TowardsZero')
array([1, 5, 3])
>>> qformatpy.rounding(test_array, 'HalfDown')
array([1, 6, 3])
Links
Documentation: https://qformatpy.readthedocs.io/en/latest/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file qformatpy-0.1.4.tar.gz
.
File metadata
- Download URL: qformatpy-0.1.4.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e84643749a868aab61f57205a503acab1d8e3aa07f8979d7935b8184d14bf849 |
|
MD5 | 2a2bffb6e9c2560072ada1915efdfd96 |
|
BLAKE2b-256 | d94e8dd66fd0e87fe372f8ae838ac9bd888991420f816c70c5745c15b69f0a03 |
File details
Details for the file qformatpy-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: qformatpy-0.1.4-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 260b1370f54c4cb678ea717adc031995f800959297b0c1ed3d4fecf9771356f1 |
|
MD5 | c5c190f9164dbea697b3c0db3fe5f8aa |
|
BLAKE2b-256 | 1758fa4b75bffb88e8065018a9b51df4edee05faf9f483bbae7171fc22bb4664 |