Decimal to Fixed-point Q Format Converter

版本 1.0.0.0 (2.4 KB) 作者: Joseph
Convert decimal (base 10) numbers to fixed-point Qa.b format
1.3K 次下载
更新时间 2017/2/20

查看许可证

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.

引用格式

Joseph (2025). Decimal to Fixed-point Q Format Converter (https://www.mathworks.com/matlabcentral/fileexchange/61669-decimal-to-fixed-point-q-format-converter), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2015a
兼容任何版本
平台兼容性
Windows macOS Linux
标签 添加标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0

Changed the title to be more descriptive.