Seungwan's repository
JUST DO IT.
Showing posts with label
P-control
.
Show all posts
Showing posts with label
P-control
.
Show all posts
Mar 19, 2023
[Python] control module로 전달함수 정의 (Define a transfer function using control module)
import
control
as
ct
import
numpy
as
np
tf_num
=
np
.
array
([
1
])
tf_den
=
np
.
array
([
1
,
6
,
5
,
0
])
sys_tf
=
ct
.
tf
(
tf_num
,
tf_den
)
print
(
sys_tf
)
Output
[Python] Visual Studio Code에서 control module 설치하기 (Install a control module at Visual Studio Code)
Source: https://python-control.readthedocs.io/en/0.9.3.post2/index.html
!
pip install control
Older Posts
Home
Subscribe to:
Posts (Atom)