#include <iostream>
#include <Eigen/Dense>
◆ main()
6 A << 1, 2, 1, 2, 1, 0, -1, 1, 2;
7 std::cout <<
"Here is the matrix A:\n" <<
A << std::endl;
8 std::cout <<
"The determinant of A is " <<
A.determinant() << std::endl;
9 std::cout <<
"The inverse of A is:\n" <<
A.inverse() << std::endl;
Matrix< SCALARA, Dynamic, Dynamic, opt_A > A
Definition: bench_gemm.cpp:47