Represents a RxC matrix with elements of type T.
| T | Type of elements. Has to be POD! |
| R | Number of Rows |
| C | Number of Columns |
Inherits MatrixImpl< T, R, C >.
Public Member Functions | |
| Matrix< T, C, R > | transposed () const |
Public Member Functions inherited from MatrixImpl< T, R, C > | |
| void | setToZero () |
| Vector< T, C > | getRow (std::size_t index) const |
| Vector< T, R > | getColumn (std::size_t index) const |
| void | setRow (std::size_t index, Vector< T, C > vec) |
| void | setColumn (std::size_t index, Vector< T, R > vec) |
Additional Inherited Members | |
Public Types inherited from MatrixImpl< T, R, C > | |
| using | type = T |
Public Attributes inherited from MatrixImpl< T, R, C > | |
| T | data [R][C] |
Static Public Attributes inherited from MatrixImpl< T, R, C > | |
| static constexpr std::size_t | numRows = R |
| static constexpr std::size_t | numColumns = C |