C++ fixed point library?(C++ 定点库?)
问题描述
我正在寻找一个免费的 C++ 定点库(主要用于嵌入式设备,而不是用于任意精度的数学).基本上,要求是:
I am looking for a free C++ fixed point library (Mainly for use with embedded devices, not for arbitrary precision math). Basically, the requirements are:
- 没有不必要的运行时开销:任何可以在编译时完成的工作,都应该在编译时完成.
- 能够在定点和浮点之间透明地切换代码,没有固有的开销.
- 定点数学函数.如果您需要来回转换以求平方根,那么使用不动点就没有多大意义了.
- 占地面积小.
有什么建议吗?
推荐答案
有一个开源定点数学库项目,可以通过以下链接找到:
There is an open-source fixed point math library project which can be found by following the links below:
- libfixmath 项目页面
- libfixmath 维基百科文章
它是一个 C 静态库,为 C++ 用户提供 C++ 类接口,它实现了以下功能:触发.函数:sin、cos、tan、asin、acos、atan、atan2饱和算术:sadd、ssub、smul、sdiv其他函数:sqrt、exp
It is a C static library with a C++ class interface for C++ users, it implements the following functionality: Trig. Functions: sin, cos, tan, asin, acos, atan, atan2 Saturated Arithmetic: sadd, ssub, smul, sdiv Other Functions: sqrt, exp
它仅支持 16.16 定点数据类型.
这是一个积极开发的开源项目(寻找感兴趣的开发人员).
It is an actively developed open-source project (looking for interested developers).
这篇关于C++ 定点库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 定点库?
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01