线性算术的C++模板库 Eigen
本文导语: Eigen 是一个线性算术的C++模板库,包括:vectors, matrices, 以及相关算法。功能强大、快速、优雅以及支持多平台。 示例代码: #include #include using namespace Eigen; int main() { Matrix2d a; a
Eigen 是一个线性算术的C++模板库,包括:vectors, matrices, 以及相关算法。功能强大、快速、优雅以及支持多平台。
示例代码:
#include #include using namespace Eigen; int main() { Matrix2d a; a