What is a good open source C/C++ math library that supports vector math and complex numbers?

丶灬走出姿态 提交于 2019-12-04 18:01:29

You can use the C++ complex numbers library
Also, Boost provides linear Algebra package

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

I haven't used any of these packages personally, but head over to Object-Oriented Numerics for a great selection of available libraries

Eigen is pretty much standard in research and should offer the stuff you need as well.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!