14、Qt使用Eigen3

一、下载Eigen

Eigen

14、Qt使用Eigen3_第1张图片

二、创建项目

创建一个"Qt Widget Application"项目,基类选择“QMainWindow“,把Eigen拷贝到项目中

14、Qt使用Eigen3_第2张图片

14、Qt使用Eigen3_第3张图片

三、更改代码

在.pro中添加

INCLUDEPATH += $$PWD\Eigen

14、Qt使用Eigen3_第4张图片

在界面上添加一个pushButton,并转到槽,更改mainwindow.cpp代码

//包含头文件

#include

#include

using namespace Eigen;

using namespace std;

//添加代码

MatrixXd matrix(2,3);

matrix << 1, 2, 4, 8, 16, 32;

cout << matrix << endl;

14、Qt使用Eigen3_第5张图片

四、运行测试

运行程序,点击pushButton,输出框输出如下矩形信息

14、Qt使用Eigen3_第6张图片

你可能感兴趣的:(Qt小功能,qt,开发语言)