Fixed-point Q Format to Decimal Converter
This function converts fixed-point numbers in Qa.b format to decimal 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 input format is either binary or hexadecimal (hex is the default). The function is called by the command "q2dec(x,a,b,format)" where x is a string representing the input number in Qa.b format, "a" is "a" is the number of bits to the left of the binary point not including the sign bit, "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 can convert the hex number 0x4000 in Q0.15 (also called Q15) format to decimal:
>> q2dec('4000',0,15)
ans =
0.5000
The following command can convert the binary number 1100000000000000 in Q0.15 (also called Q15) format to decimal:
>> q2dec('1100000000000000',0,15,'bin')
ans =
-0.5000
Several numbers can be converted in one call by placing each number on a row of the input matrix:
>> x = ['8000'; 'C000'; '0000'; '4000'];
>> q2dec(x,0,15)
ans =
-1.0000
-0.5000
0
0.5000
See also my other submission dec2q that converts decimal numbers to Qa.b format.
Citation pour cette source
Joseph (2026). Fixed-point Q Format to Decimal Converter (https://fr.mathworks.com/matlabcentral/fileexchange/61670-fixed-point-q-format-to-decimal-converter), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
- Code Generation > Fixed-Point Designer > Fixed-Point and Floating-Point Basics > Digital Number Representation >
- FPGA, ASIC, and SoC Development > Fixed-Point Designer > Fixed-Point and Floating-Point Basics > Digital Number Representation >
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 |
