如何用整数代替浮点数并且损失较少的精度和效率?

发布于 2024-11-14 22:55:13 字数 123 浏览 5 评论 0原文

由于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 技术交流群。

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

发布评论

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

评论(2

榆西 2024-11-21 22:55:13

您可能需要考虑定点数,或者有理整数包。自己实现 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.

不如归去 2024-11-21 22:55:13

当然。

根据您需要的分辨率,将所有内容乘以 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.

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