Go to the documentation of this file.00001 #include <iostream>
00002 #include <Eigen/Dense>
00003
00004 using Eigen::MatrixXd;
00005
00006 int main()
00007 {
00008 MatrixXd m(2,2);
00009 m(0,0) = 3;
00010 m(1,0) = 2.5;
00011 m(0,1) = -1;
00012 m(1,1) = m(1,0) + m(0,1);
00013 std::cout << m << std::endl;
00014 }