mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-02 18:23:06 +08:00
feat: Created midpoint integration numerical method (#1785)
* Created composite Simpson's numerical integration method * Created midpoint numerical integration method * Corrections * Midpoint method * Improved Documentation * added namespace numerical_methods * Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * updating DIRECTORY.md * clang-format and clang-tidy fixes forec5e0cce* Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for7f16cc14* Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update midpoint_integral_method.cpp * All changes have been applied * clang-format and clang-tidy fixes for6617e060* Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes fora5a50f89* Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for4c60e180* Create midpoint_integral_method.cpp * Update numerical_methods/midpoint_integral_method.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for27f76052* Update midpoint_integral_method.cpp Co-authored-by: ggkogkou <ggkogkou@ggkogkou.gr> Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@@ -229,6 +229,7 @@
|
||||
* [Golden Search Extrema](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/golden_search_extrema.cpp)
|
||||
* [Lu Decompose](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/lu_decompose.cpp)
|
||||
* [Lu Decomposition](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/lu_decomposition.h)
|
||||
* [Midpoint Integral Method](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/midpoint_integral_method.cpp)
|
||||
* [Newton Raphson Method](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/newton_raphson_method.cpp)
|
||||
* [Ode Forward Euler](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/ode_forward_euler.cpp)
|
||||
* [Ode Midpoint Euler](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/ode_midpoint_euler.cpp)
|
||||
|
||||
Reference in New Issue
Block a user