tab correction

This commit is contained in:
2020-09-15 14:53:28 +03:00
parent 6a1b67a374
commit f73b7fb092

View File

@@ -210,7 +210,7 @@ public:
/** /**
* @brief Method which returns the selected column in PIMathVectorT format. * @brief Method which returns the selected column in PIMathVectorT format.
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param index is the number of the selected column * @param index is the number of the selected column
* @return column in PIMathVectorT format * @return column in PIMathVectorT format
@@ -223,7 +223,7 @@ public:
/** /**
* @brief Method which returns the selected row in PIMathVectorT format * @brief Method which returns the selected row in PIMathVectorT format
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param index is the number of the selected row * @param index is the number of the selected row
* @return row in PIMathVectorT format * @return row in PIMathVectorT format
@@ -236,7 +236,7 @@ public:
/** /**
* @brief Set the selected column in matrix. * @brief Set the selected column in matrix.
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param index is the number of the selected column * @param index is the number of the selected column
* @param v is a vector of the type _CMCol that needs to fill the column * @param v is a vector of the type _CMCol that needs to fill the column
@@ -249,7 +249,7 @@ public:
/** /**
* @brief Set the selected row in matrix * @brief Set the selected row in matrix
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param index is the number of the selected row * @param index is the number of the selected row
* @param v is a vector of the type _CMCol that needs to fill the row * @param v is a vector of the type _CMCol that needs to fill the row
@@ -262,7 +262,7 @@ public:
/** /**
* @brief Method which changes selected rows in a matrix. * @brief Method which changes selected rows in a matrix.
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param r0 is the number of the first selected row * @param r0 is the number of the first selected row
* @param r1 is the number of the second selected row * @param r1 is the number of the second selected row
@@ -280,7 +280,7 @@ public:
/** /**
* @brief Method which changes selected columns in a matrix. * @brief Method which changes selected columns in a matrix.
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param c0 is the number of the first selected column * @param c0 is the number of the first selected column
* @param c1 is the number of the second selected column * @param c1 is the number of the second selected column
@@ -336,7 +336,7 @@ public:
/** /**
* @brief Full access to elements reference by row "row" and col "col". * @brief Full access to elements reference by row "row" and col "col".
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param row is a parameter that shows the row number of the matrix of the selected element * @param row is a parameter that shows the row number of the matrix of the selected element
* @param col is a parameter that shows the column number of the matrix of the selected element * @param col is a parameter that shows the column number of the matrix of the selected element
@@ -346,7 +346,7 @@ public:
/** /**
* @brief Full access to element by row "row" and col "col". * @brief Full access to element by row "row" and col "col".
* If you enter an index out of the border of the matrix there will be "undefined behavior" * If you enter an index out of the border of the matrix there will be "undefined behavior"
* *
* @param row is a parameter that shows the row number of the matrix of the selected element * @param row is a parameter that shows the row number of the matrix of the selected element
* @param col is a parameter that shows the column number of the matrix of the selected element * @param col is a parameter that shows the column number of the matrix of the selected element
@@ -552,7 +552,7 @@ public:
} }
/** /**
* @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix * @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return copy of inverted matrix * @return copy of inverted matrix
@@ -606,7 +606,7 @@ public:
} }
/** /**
* @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix * @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return inverted matrix * @return inverted matrix
@@ -618,7 +618,7 @@ public:
} }
/** /**
* @brief Matrix transposition operation. Works only with square matrix, nonzero matrices and invertible matrix * @brief Matrix transposition operation. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @return transposed matrix * @return transposed matrix
*/ */
@@ -1154,7 +1154,7 @@ public:
} }
/** /**
* @brief Determinant of the self matrix is calculated. Works only with square matrix, nonzero matrices and invertible matrix * @brief Determinant of the self matrix is calculated. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return matrix determinant * @return matrix determinant
@@ -1175,7 +1175,7 @@ public:
} }
/** /**
* @brief Trace of the matrix is calculated. Works only with square matrix, nonzero matrices and invertible matrix * @brief Trace of the matrix is calculated. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return matrix trace * @return matrix trace
@@ -1194,7 +1194,7 @@ public:
} }
/** /**
* @brief Transforming matrix to upper triangular. Works only with square matrix, nonzero matrices and invertible matrix * @brief Transforming matrix to upper triangular. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return copy of transformed upper triangular matrix * @return copy of transformed upper triangular matrix
@@ -1237,7 +1237,7 @@ public:
} }
/** /**
* @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix * @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @param sv is a vector multiplier * @param sv is a vector multiplier
@@ -1299,7 +1299,7 @@ public:
} }
/** /**
* @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix * @brief Matrix inversion operation. Works only with square matrix, nonzero matrices and invertible matrix
* *
* @param ok is a parameter with which we can find out if the method worked correctly * @param ok is a parameter with which we can find out if the method worked correctly
* @return inverted matrix * @return inverted matrix