Skip to content
MAE_171A.git
⋮
Summary
Commits
Files
MAE_171A.git
/
hw2
/
prob_5.py
Introduction to Feedback and Control Systems: Dynamic Systems Control
View raw
1
import
numpy
as
np
2
3
p
=
[
1
,
2
,
3
,
8
,
8
]
4
r
=
np
.
roots
(
p
)
5
print
(
np
.
around
(
r
,
2
)
)
6
Summary
Commits
Files