documentation anhanced
This commit is contained in:
12
README
12
README
@@ -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:
|
||||
|
||||
|
Reference in New Issue
Block a user