We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b5b873 commit 423f3a8Copy full SHA for 423f3a8
numpy/integration/riemann-sum.py
@@ -0,0 +1,7 @@
1
+import numpy as np
2
+
3
+dxi = 0.1
4
+xi = np.arange(0, np.pi / 2, dxi)
5
+xprimei = (xi[1:] + xi[:-1])/2
6
+integral = np.sum(np.sin(xprimei) * dxi)
7
+print(integral)
0 commit comments