mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
fix documentation
This commit is contained in:
parent
68dd9b1235
commit
0429b5dd88
@ -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...";
|
||||
|
@ -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.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user