forked from bellshade/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
midpoint.py
58 lines (45 loc) · 1.41 KB
/
midpoint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from typing import Callable
import numpy as np
def midpoint(
func: Callable[..., float], a: float, b: float, eps: float = 0.0001, *args, **kwargs
) -> float:
"""
Aturan titik tengah berfungsi mengoptimasi metode segiempat
Dengan aturan ini, metode segiempat membagi domain integrasi
sebanyak n buah dan menjumlahkan seluruh luas segi empat dengan dimensi
(a + b)/n * f(x), dimana x adalah titik tengah segiempat
Parameter:
f = fungsi input
a = batas bawah integrasi
b = batas atas integrasi
eps = error relatif maksimal
>>> midpoint(lambda x: x**3, 0, 1)
0.25503446882812497
>>> midpoint(lambda x: x**10, 0, 1)
0.09396302982674617
"""
try:
n = 100
x = np.linspace(a, b, n)
dx = x[1] - x[0]
L0 = sum([dx * func(i + dx / 2, *args, **kwargs) for i in x])
err = 1
while err > eps:
n += 1
x = np.linspace(a, b, n)
dx = x[1] - x[0]
L1 = sum([dx * func(i + dx / 2, *args, **kwargs) for i in x])
err = np.abs(L1 - L0) / np.abs(L1)
L0 = L1
except Exception:
raise RuntimeError("Integrasi gagal, pastikan fungsi anda benar!")
return L1
if __name__ == "__main__":
def f(x: float) -> float:
"""
Test Function
"""
return x ** 3
print(midpoint(f, 0, 1))
import doctest
doctest.testmod()