We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b32ac50 commit 54900f0Copy full SHA for 54900f0
numpy/integration/README.md
@@ -4,15 +4,15 @@ A simple method for evaluating integrals numerically is by the middle Riemann
4
sum
5
6
<!--- Equation
7
-S = \sum_{i=1}^n f(x'_i) \Delta x
+S = \int_a^b f(x) dx = \sum_{i=1}^n f(x'_i) \Delta x
8
--->
9
10

11
12
with
13
14
15
-x'_i = (x_i + x_{i-1}) / 2
+x'_i = (x_i + x_{i-1}) / 2; x_0 = a, x_n = b
16
17
18

0 commit comments