aboutsummaryrefslogtreecommitdiffstats
path: root/docs/matrix.dox
diff options
context:
space:
mode:
Diffstat (limited to 'docs/matrix.dox')
-rw-r--r--docs/matrix.dox33
1 files changed, 0 insertions, 33 deletions
diff --git a/docs/matrix.dox b/docs/matrix.dox
deleted file mode 100644
index c1c99dde..00000000
--- a/docs/matrix.dox
+++ /dev/null
@@ -1,33 +0,0 @@
-/** @class yage::Matrix
-
-%Matrix Class
-============
-
-The matrix class is a templated class which implements a mathematical %Matrix.
-
-
-Usage Guide
------------
-
-The class can be instantiated
-
-
-Example Code
-------------
-
-Creating a %Matrix and performing operations on it.
-
-```
-#include <YAGE/Math/matrix.hpp>
-
-int main(int, char **)
-{
- yage::Matrix<2, 2, int> mat1 {{1, 2, 3, 4}};
- yage::Matrix<2, 2, int> mat2 {{5, 6, 7, 8}};
-
- int dot = yage::math::dot(mat1, mat2);
- return 0;
-}
-```
-
-*/