Example 예제 보드선도
Example
• Views 337
• Comments 0
• Last Updated at 1 month ago
- 예제
다음 시스템에 대한 보드선도를 그려라.
import numpy as np
import matplotlib.pyplot as plt
import control as ct
G1 = ct.tf([4],[1])
G2 = ct.tf([0.5, 1],[1])
G3 = ct.tf([1],[1, 0])
G4 = ct.tf([1],[0.2, 1])
G = ct.series(G1, G2, G3, G4)
ct.bode(G)
first article
last article
Login to write a comment.