1、 下载Eigen
Eigen的官网下载地址:http://eigen.tuxfamily.org/index.php?title=Main_Page#Download
下载后的文件名为:eigen-eigen-5097c01bcdc4.tar.bz2,为方便使用将其名字修改为eigen3,
另外在CSDN资源里也可以下载,其地址为:http://download.csdn.net/detail/hjx_1000/4983537
如图1所示:
图1、eigen下载后解压缩目录
使用时需在VS2005的项目中包含Dense文件(其目录为:eigen3\Eigen),如图2所示:
图2、Dense文件的位置
2、VS2005项目中的配置,直接在“Additional Include Directories”中加入eigen3的目录即可,如图3所示:
图3、在项目中添加Eigen目录
3、在项目中包含eigen的目录、命名空间,并使用其中的矩阵#include "stdafx.h"
#include
#include
#include
using Eigen::MatrixXd;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
MatrixXd m(2,2);
m(0,0) = 3;
m(1,0) = 2.5;
m(0,1) = -1;
m(1,1) = m(1,0) + m(0,1);
std::cout << m << std::endl;
system("pause");
return 0;
}