什么是好的开源C/C++支持向量数学和复数的数学库?
我正在开发一个需要向量数学和复数的项目。
我正在寻找一个支持 C/C++ 的良好开源 API,并希望具有不错的性能。
我可以自己编写这些函数,但它会很丑而且很慢。
I am working on a project that needs vector math and complex numbers.
I am looking a for a good open source API that supports C/C++ and hopefully has decent performance.
I can write these functions myself but it will be ugly and slow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我经常使用与子弹物理学捆绑在一起的索尼矢量数学库。它的速度很快,有很多线性代数算法。
对于复数,您可以简单地使用 std::complex
I regularly use Sony Vector Math library bundled with bullet physics. It's fast has many linear algebra algorithms.
For complex numbers you can simply use std::complex
您可以使用C++ 复数库
此外,Boost 还提供线性代数包
You can use the C++ complex numbers library
Also, Boost provides linear Algebra package
我个人没有使用过这些软件包,但请前往 Object-Oriented Numerics 以获得很棒的体验选择可用的库
I haven't used any of these packages personally, but head over to Object-Oriented Numerics for a great selection of available libraries
Eigen 几乎是研究标准,也应该提供您需要的东西。
Eigen is pretty much standard in research and should offer the stuff you need as well.