bug fixes in pimathmatrix and begin of docs in pimathvector

This commit is contained in:
2020-09-17 18:28:28 +03:00
parent 0a458d28f3
commit 2b73c106e7
2 changed files with 36 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ public:
/**
* @brief Constructor that calls the private resize method
*
* @return identitied matrix of type PIMathMatrixT
* @return resized matrix of type PIMathMatrixT
*/
PIMathMatrixT() { resize(Rows, Cols); }
@@ -100,7 +100,7 @@ public:
* @brief Constructor that calls the private resize method
*
* @param val is the PIVector with which the matrix is filled
* @return identitied matrix of type PIMathMatrixT
* @return resized matrix of type PIMathMatrixT
*/
PIMathMatrixT(const PIVector<Type> &val) {
resize(Rows, Cols);