aboutsummaryrefslogtreecommitdiffstats
path: root/docs/matrix.dox
diff options
context:
space:
mode:
authorTravisBot <>2017-09-21 23:52:57 +0000
committerTravisBot <>2017-09-21 23:52:57 +0000
commit43d8d9b5de8f269643c380d8d6c6c65d9224ad4a (patch)
treeb8a9546cb663081e4587f812fa49a228be9978e5 /docs/matrix.dox
parentad666428488d3c800ca18d877dad803bf18b8168 (diff)
downloadYAGE-43d8d9b5de8f269643c380d8d6c6c65d9224ad4a.tar.gz
YAGE-43d8d9b5de8f269643c380d8d6c6c65d9224ad4a.zip
Rebuilding 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;
-}
-```
-
-*/