Problem using tf to perform a transfer function.

조회 수: 18 (최근 30일)
Leaysia Lampkin
Leaysia Lampkin 2023년 8월 31일
답변: Sam Chak 2023년 8월 31일
I was trying to mimic an m-script file for completing a transfer function from my textbook. I ran into an issue where I receive an error "Undefined functin 'tf' for input arguments of type 'double'."
My code is as follows:
numg=[6 0 1];
deng=[1 3 3 1];
sysg=tf(numg,deng);
Undefined functin 'tf' for input arguments of type 'double'.
It is important to know that the code comes from the textbook. Could I be missing a package?

채택된 답변

Star Strider
Star Strider 2023년 8월 31일
You need to have the Control System Toolbox licensed and installed.
With that, the code works appropriately —
numg=[6 0 1];
deng=[1 3 3 1];
sysg=tf(numg,deng)
sysg = 6 s^2 + 1 --------------------- s^3 + 3 s^2 + 3 s + 1 Continuous-time transfer function.
.

추가 답변 (1개)

Sam Chak
Sam Chak 2023년 8월 31일
If you are unable to obtain the Control System Toolbox, many useful MATLAB-compatible functions can still be executed on Octave Online. These functions include ss, tf, zpk, damp, pole, zero, rlocus, bode, nyquist, pid, feedback, minreal, dcgain, step, initial, impulse, lsim, place, lqr, lyap, etc.

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by