Lesson 1 A simple first program

来源:互联网 发布:淘宝电商认证贷款 编辑:程序博客网 时间:2024/05/10 16:46

The Eigen/Dense header file defines all member functions for the MatrixXd type and related types 

#include <iostream>#include <Eigen/Dense>using Eigen::MatrixXd;int main(){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;}


0 0