mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-27 07:29:52 +08:00
269f683902
Various documentation improvements including new snippets (AngleAxis and Cholesky)
17 lines
277 B
C++
17 lines
277 B
C++
#include <Eigen/Core>
|
|
#include <Eigen/Array>
|
|
#include <Eigen/LU>
|
|
#include <Eigen/Cholesky>
|
|
#include <Eigen/Geometry>
|
|
|
|
USING_PART_OF_NAMESPACE_EIGEN
|
|
using namespace Eigen;
|
|
using namespace std;
|
|
|
|
int main(int, char**)
|
|
{
|
|
cout.precision(3);
|
|
${snippet_source_code}
|
|
return 0;
|
|
}
|