aboutsummaryrefslogtreecommitdiffstats
path: root/docs/matrix.dox
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-07 23:09:06 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-07 23:09:06 +0000
commit0a42123b150e06f28ae82e460e854984c2dc9648 (patch)
treea5909cde7cebe6d2d9f1a9da6f121b378846696e /docs/matrix.dox
parentf066218b1fce4398588d6b139477399a15f750b7 (diff)
downloadYAGE-0a42123b150e06f28ae82e460e854984c2dc9648.tar.gz
YAGE-0a42123b150e06f28ae82e460e854984c2dc9648.zip
[Docs] Changing documentation
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;
-}
-```
-
-*/