Merge pull request #907 from kvedala/lu_decompose

[doc] fix documentation in lu_decompose
This commit is contained in:
Krishna Vedala
2020-06-25 18:20:34 -04:00
committed by GitHub
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() {
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
* elements of matrices L and U.
*