mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-09 07:00:27 +08:00
13 lines
173 B
C++
13 lines
173 B
C++
#include <Eigen/Dense>
|
|
#include <iostream>
|
|
|
|
using namespace Eigen;
|
|
using namespace std;
|
|
|
|
int main(int, char**)
|
|
{
|
|
cout.precision(3);
|
|
${snippet_source_code}
|
|
return 0;
|
|
}
|