You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
206 B

  1. #include <iostream>
  2. #include <Eigen/Dense>
  3. using Eigen::MatrixXd;
  4. int main()
  5. {
  6. MatrixXd m(2,2);
  7. m(0,0) = 3;
  8. m(1,0) = 2.5;
  9. m(0,1) = -1;
  10. m(1,1) = m(1,0) + m(0,1);
  11. std::cout << m << std::endl;
  12. }