mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-02 18:23:06 +08:00
feat: Created composite Simpson's numerical integration method (#1773)
* Created composite Simpson's numerical integration method * Created midpoint numerical integration method * Corrections * deleted: unnecessary file * fixed: doucumentation and structure * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * updating DIRECTORY.md * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update numerical_methods/composite_simpson_rule.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * fixed: compilation and documentation error 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> Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
@@ -223,6 +223,7 @@
|
||||
## Numerical Methods
|
||||
* [Bisection Method](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/bisection_method.cpp)
|
||||
* [Brent Method Extrema](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/brent_method_extrema.cpp)
|
||||
* [Composite Simpson Rule](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/composite_simpson_rule.cpp)
|
||||
* [Durand Kerner Roots](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/durand_kerner_roots.cpp)
|
||||
* [False Position](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/false_position.cpp)
|
||||
* [Fast Fourier Transform](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/numerical_methods/fast_fourier_transform.cpp)
|
||||
|
||||
Reference in New Issue
Block a user