diff --git a/numerical_methods/lu_decompose.cpp b/numerical_methods/lu_decompose.cpp index b27fed2ee..66f1a8551 100644 --- a/numerical_methods/lu_decompose.cpp +++ b/numerical_methods/lu_decompose.cpp @@ -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..."; diff --git a/numerical_methods/lu_decomposition.h b/numerical_methods/lu_decomposition.h index 4999fc40f..402fe6e3b 100644 --- a/numerical_methods/lu_decomposition.h +++ b/numerical_methods/lu_decomposition.h @@ -78,7 +78,7 @@ int lu_decomposition(const matrix &A, matrix *L, matrix *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. *