From ab4c1242ddbdd75646992f11b1b70cec3c8542b5 Mon Sep 17 00:00:00 2001 From: ggkogkou <76820848+ggkogkou@users.noreply.github.com> Date: Wed, 27 Oct 2021 23:06:22 +0300 Subject: [PATCH] Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal --- numerical_methods/midpoint_integral_method.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numerical_methods/midpoint_integral_method.cpp b/numerical_methods/midpoint_integral_method.cpp index f6e63a318..c861460ae 100644 --- a/numerical_methods/midpoint_integral_method.cpp +++ b/numerical_methods/midpoint_integral_method.cpp @@ -1,6 +1,6 @@ /*! * @file - * \brief A numerical method for easy approximation of integrals + * \brief A numerical method for easy [approximation of integrals](https://en.wikipedia.org/wiki/Midpoint_method) * \details The idea is to split the interval into N of intervals and use as interpolation points the xi * for which it applies that xi = x0 + i*h, where h is a step defined as h = (b-a)/N where a and b are the * first and last points of the interval of the integration [a, b].