-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresidue.py
47 lines (40 loc) · 916 Bytes
/
residue.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
from scipy.signal import residue
import pandas as pd
import convert
# INPUT
# numerator
n = [90, 90*2*10**4]
# denominator
k = [1, 19998, -9.99*10**7]
# END INPUT
ans = residue(n,k)
final_dict = {
'Pole': [],
'Residue': [],
'PolarRep': [],
'Degree': []
}
p = []
for res in ans[0]:
p.append(convert.to_polar(res))
degree = {}
# append to dict
for i in range(len(ans[1])):
# get degree of pole, as function will format answers in increasing degree (according to docs)
pole = ans[1][i]
if pole in degree:
degree[pole] += 1
else:
degree[pole] = 1
# append to answer
final_dict['Pole'].append(pole)
final_dict['Residue'].append(ans[0][i])
final_dict['PolarRep'].append(p[i])
final_dict['Degree'].append(degree[pole])
df = pd.DataFrame(final_dict)
# displaying the results
print('Numerator:')
print(n)
print('Denominator:')
print(k)
print(df)