aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-04-26 16:35:38 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-04-26 16:35:38 +0100
commit4f83d6ad1959f3c76cd5eb328ec65ced4ca4f339 (patch)
tree22a2208458cf00df46accfd097c4f19a24b733cc /doc/snippets
parent34b3cdb82c4b1e7b19ef0790d8374347892bd1e3 (diff)
Remove doc/snippets/MatrixBase_minor.cpp because minor() was removed.
Diffstat (limited to 'doc/snippets')
-rw-r--r--doc/snippets/MatrixBase_minor.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/snippets/MatrixBase_minor.cpp b/doc/snippets/MatrixBase_minor.cpp
deleted file mode 100644
index 2915d7eed..000000000
--- a/doc/snippets/MatrixBase_minor.cpp
+++ /dev/null
@@ -1,3 +0,0 @@
-Matrix3i m = Matrix3i::Random();
-cout << "Here is the matrix m:" << endl << m << endl;
-cout << "Here is m.minor(1,1):" << endl << m.minor(1,1) << endl;