I'm looking to generate a bode plot of the following function in matlab: Gc(s)G(s) = K*e^-Ts / s when T = 0.2
조회 수: 2 (최근 30일)
이전 댓글 표시
I'm looking to generate a bode plot of the following function in matlab: Gc(s)G(s) = K*e^-Ts / s when T = 0.2.
How do i program the transfer function using the variable K.
Thanks,
댓글 수: 0
답변 (1개)
Max Heimann
2022년 1월 16일
You could try:
s = tf('s')
T = 0.2;
K = <some value>
GcG = K * e ^ (-T * s)
bode(GcG)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!