aboutsummaryrefslogtreecommitdiffstats
path: root/docs/matrix.dox
blob: c1c99dde256c6e30c7920cfa6cefa9832e2cd2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** @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;
}
```

*/