From 9190304498c9ed7e1ec4d2d880411cd5af9ddf01 Mon Sep 17 00:00:00 2001 From: Julien Richard Date: Sun, 6 Oct 2024 14:22:21 +0200 Subject: [PATCH] Update maths/trapezoidal_rule.py Co-authored-by: Tianyi Zheng --- maths/trapezoidal_rule.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/maths/trapezoidal_rule.py b/maths/trapezoidal_rule.py index ebb1ebe40..35306259b 100644 --- a/maths/trapezoidal_rule.py +++ b/maths/trapezoidal_rule.py @@ -3,9 +3,6 @@ Numerical integration or quadrature for a smooth function f with known values at The trapezoidal rule is the classical approach of summing 'Equally Spaced Abscissas' -Method 1: -"Extended Trapezoidal Rule" - """