mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
15 lines
226 B
C++
15 lines
226 B
C++
#include <Eigen/Core>
|
|
#include <Eigen/Array>
|
|
#include <Eigen/LU>
|
|
#include <Eigen/Cholesky>
|
|
#include <Eigen/Geometry>
|
|
|
|
using namespace Eigen;
|
|
using namespace std;
|
|
|
|
int main(int, char**)
|
|
{
|
|
${snippet_source_code}
|
|
return 0;
|
|
}
|