MATLAB:提取最高有效位

发布于 2024-11-02 03:58:05 字数 95 浏览 1 评论 0原文

我正在学习 MATLAB,并面临着从给定双精度值中提取最高有效位的问题。我看到了 getmsb 函数。但是,有没有一个函数可以给我 5 个最高有效位?

阿尼尔.

I am learning MATLAB and am facing problem about extracting most significant bits from a given double. I saw getmsb function. But, is there a function that can give me say 5 most significant bits?

Anil.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世态炎凉 2024-11-09 03:58:05

已经晚了,所以我确信有更好的解决方案。无论如何,这似乎可以做到这一点:

A = rand(1, 1) * 10000
nBits = 5
curBits = ceil(log2(A))
toShift = curBits - nBits
wantedMSB = fix(A / 2^toShift) % This is still a double, feel free to cast.
dec2bin(wantedMSB)             % Result in bitstring form.

或者,作为一个衬垫:

A = rand(1, 1) * 10000
nBits = 5
wantedMSB = fix(A / 2^(ceil(log2(A)) - nBits))

[Edit]顺便说一句,getmsb函数是定点工具箱的一部分,它可能不可用在每个 MATLAB 安装上。

It's late, so I'm sure there's a better solution. Anyway, this seems to do it:

A = rand(1, 1) * 10000
nBits = 5
curBits = ceil(log2(A))
toShift = curBits - nBits
wantedMSB = fix(A / 2^toShift) % This is still a double, feel free to cast.
dec2bin(wantedMSB)             % Result in bitstring form.

Or, as one liner:

A = rand(1, 1) * 10000
nBits = 5
wantedMSB = fix(A / 2^(ceil(log2(A)) - nBits))

[Edit] Btw, the getmsb function is part of the Fixed-Point Toolbox, which might not be available on every MATLAB installation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文