IEEE 754 浮点舍入到最接近的值
在我的笔记中我有类似的内容
If (Guard & !Round & !Sticky)
If (LSB == 1)
LSB += 1
Else If (Guard)
LSB += 1
End If
所以我可以将其简化为
If Guard Then
LSB += 1
In my notes I have something like
If (Guard & !Round & !Sticky)
If (LSB == 1)
LSB += 1
Else If (Guard)
LSB += 1
End If
So I could just simplify it to
If Guard Then
LSB += 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有。那这个案子呢?
在这种情况下,原始代码不会执行
LSB += 1
,但您的代码会执行。No. What about this case?
The original code would not execute
LSB += 1
in that case, yours would.