documentation anhanced

This commit is contained in:
Marc Wäckerlin
2016-08-25 18:56:50 +00:00
parent 99afc89f53
commit ce223aa21e
6 changed files with 66 additions and 15 deletions

12
README
View File

@@ -1,23 +1,23 @@
C++ Matrix Template Library
Library to provide mathematical matices as standard C++ types.
Library to provide mathematical matrices as standard C++ types that behave like standard types.
Features:
* Allows any size of Matrix
* Either fixed size, size given as template parameter
* Or variable size, size is given in constructor
* Allows any of values, given as template üarameter
* Allows any type of values, given as template parameter
* Supports matrix specific functions:
* transposition
* gaussian algorithm
* determinant
* inversion
* determinant using gauss algorithm
* inversion using gauss-jordan algorithm
* Supports mathematical operations:
* addition
* subtraction,
* subtraction
* multiplication
* division (using the inverse matrix)
* Higly stable and well tested
* Higly stable and well tested in >200 tests
Example with templated size: