Decimal to Fixed-point Q Format Converter
This function converts decimal (base 10) numbers to fixed-point Qa.b format where "a" is the number of bits to the left of the binary point not including the sign bit, and "b" is the number of bits to the right of the decimal point. The output format is either binary or hexadecimal (hex is the default). The function is called using the command "dec2q(x,a,b,format)" where x is the decimal input (which can either be a scalar or a vector), "a" is the number of bits to the left of the binary point not including the sign bit, and "b" is the number of bits to the right of the decimal point, and format is either 'bin' or 'hex' (format is optional, 'hex' is the default).
For example, the following command converts the decimal number 0.5 to Q0.15 format (which is also called Q15) with the output expressed as a hex number:
>> dec2q(0.5,0,15)
ans =
4000
The following command converts the decimal number -0.5 to Q0.15 with the output expressed as a binary number:
>> dec2q(-0.5,0,15,'bin')
ans =
1100000000000000
The function can also convert a vector of decimal numbers to Q0.15 format:
>> dec2q([-1 -0.5 0 0.5],0,15)
ans =
8000
C000
0000
4000
See also my other file submission q2dec which converts from Qa.b format to decimal.
Citation pour cette source
Joseph (2026). Decimal to Fixed-point Q Format Converter (https://fr.mathworks.com/matlabcentral/fileexchange/61669-decimal-to-fixed-point-q-format-converter), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
- FPGA, ASIC, and SoC Development > Vision HDL Toolbox > HDL-Optimized Algorithm Design >
- Image Processing and Computer Vision > Vision HDL Toolbox > HDL-Optimized Algorithm Design >
Tags
Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.0.0.0 | Changed the title to be more descriptive. |
