方案:仅使用 R6RS,如何确定浮数的尾数和指数
是否可以在主要 R6RS 方案实现中从浮点数中提取尾数和指数,以便:
v = fxb^e
f - 尾数
b - 基础
e - 指数
例如:3.14 = 0.785 x 2^2
如果不支持,我想直接访问 flonum(IEEE 754)位来解决提取上述值的问题,但我发现没有函数将 flonum 转换为一系列字节(字节向量)。
谢谢。
Is this possible to extract mantissa and exponent from a float in major R6RS Scheme implementations so that:
v = f x b^e
f - mantissa
b - base
e - exponent
For example: 3.14 = 0.785 x 2^2
If it's not supported, I'd like to have access to flonum's (IEEE 754) bits directly to approach the problem of extracting the above values, but I've found no function to convert flonum to a series of bytes (bytevector).
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.r6rs.org/final/html/r6rs-lib/r6rs-lib-ZH-3.html#node_sec_2.8" r6rs.org/final/html/r6rs-lib/r6rs-lib-ZH-3.html#node_sec_2.8
这里是它的使用:
为了验证结果,这里有一个直接访问字节的 C 程序:
http://www.r6rs.org/final/html/r6rs-lib/r6rs-lib-Z-H-3.html#node_sec_2.8
Here it is in use:
To verify the result, here is a C program which accesses the bytes directly: