From 0429b5dd888030ce9b0c069875491aac1261660e Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Thu, 25 Jun 2020 18:01:41 -0400 Subject: [PATCH] fix documentation --- numerical_methods/lu_decompose.cpp | 2 +- numerical_methods/lu_decomposition.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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. *