如何用整数代替浮点数并且损失较少的精度和效率?
由于Aim编译平台(MTK)不支持浮点数,而且MTK模拟浮点数运算时速度非常慢,所以我必须使用一些其他对象来代替浮点数。整数是一个好的选择吗?或者使用 String 实现 Float 类?有没有库可以解决这个问题?感谢您的建议;-)
Because the aim compile platform(MTK) does not support float number, and it is very slow when MTK simulate float operation, I must use some other objects to substitute the float. Is integer a good choice? Or implement a Float Class using String? Is there any libs to solve this problem? Thanks for your advice;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要考虑定点数,或者有理整数包。自己实现 Float 类将会比模拟的 float 操作慢。
You might want to consider fixed point numbers, or else a rational integer package. Implementing a Float class yourself is going to be slower than the simulated float operations.
当然。
根据您需要的分辨率,将所有内容乘以 10、100、1000、10000。
然后只需进行定点数学运算
例如,使用 10000
10000/2 = 5000 或 0.5
由于大多数有符号整数最多可达 20 亿,因此可以为您提供很大的小数空间。
如果需要超越函数,请使用查找表。
Sure.
Multiply everything by 10, 100, 1000, 10000 depending on the resolution you need.
Then just do fixed point math
For example, using 10000
10000/2 = 5000, or .5
Since most signed integers are up to 2 Billion, that can give you a lot of room for decimals.
If you need transcendental functions, use look up tables.