fix documentation

This commit is contained in:
Krishna Vedala 2020-06-25 18:01:41 -04:00
parent 68dd9b1235
commit 0429b5dd88
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ void test1() {
} }
/** /**
* @brief Test determinant computation using LU decomposition * Test determinant computation using LU decomposition
*/ */
void test2() { void test2() {
std::cout << "Determinant test 1..."; std::cout << "Determinant test 1...";

View File

@ -78,7 +78,7 @@ int lu_decomposition(const matrix<T> &A, matrix<double> *L, matrix<double> *U) {
} }
/** /**
* @brief Compute determinant of an NxN square matrix using LU decomposition. * Compute determinant of an NxN square matrix using LU decomposition.
* Using LU decomposition, the determinant is given by the product of diagonal * Using LU decomposition, the determinant is given by the product of diagonal
* elements of matrices L and U. * elements of matrices L and U.
* *