aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/example.cpp')
-rw-r--r--doc/example.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/doc/example.cpp b/doc/example.cpp
deleted file mode 100644
index 23893488a..000000000
--- a/doc/example.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <Eigen/Core>
-
-USING_PART_OF_NAMESPACE_EIGEN
-
-using namespace std;
-
-template<typename Scalar, typename Derived>
-void foo(const MatrixBase<Scalar, Derived>& m)
-{
- cout << "Here's m:" << endl << m << endl;
-}
-
-template<typename Scalar, typename Derived>
-Eigen::ScalarMultiple<Derived>
-twice(const MatrixBase<Scalar, Derived>& m)
-{
- return 2 * m;
-}
-
-int main(int, char**)
-{
- Matrix2d m = Matrix2d::random();
- foo(m);
- foo(twice(m));
- return 0;
-}