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.

12 lines
173 B

  1. #include <Eigen/Dense>
  2. #include <iostream>
  3. using namespace Eigen;
  4. using namespace std;
  5. int main(int, char**)
  6. {
  7. cout.precision(3);
  8. ${snippet_source_code}
  9. return 0;
  10. }