('tf' requires one of the following) "tf commend is not working" HELP PLS!
27 ビュー (過去 30 日間)
古いコメントを表示

this simple command doesn't work even though I've entered all commands correctly
thx for answers...
0 件のコメント
採用された回答
M
2019 年 11 月 13 日
Your code is right, but you do not have the required toolbox. The function tf is part of the 4 toolbox listed in the error message. You have to install at least one of them to use tf.
その他の回答 (2 件)
Supriya Joshi
2020 年 7 月 27 日
%poles and zeros num=[1 4 3]; den=[3 19 27 35]; z=tf(num,den) %z1=roots(num) %p1=roots(den) [z1,p1,k]=tf2zp(num,den) pzmap(z)
0 件のコメント
jean carlos
2025 年 3 月 26 日
por que me sale este error me podra ayudarme por favor
%% LGR
Gzl=tf(Numz,Denz,-1);
rlocus(Gzl); %LGR
axis([-1.5 1.5 -1.25 1.25]);
title('LGR');
>> jean
Unrecognized function or variable 'Numz'.
Error in jean (line 2)
Gzl=tf(Numz,Denz,-1);
Unrecognized function or variable 'Numz'
2 件のコメント
Stephen23
2025 年 3 月 26 日
"Unrecognized function or variable 'Numz'"
Solution: define Numz.
Question: what do you expect Numz to be?
Sam Chak
2025 年 3 月 26 日
@jean carlos, You need to specify the numerator and denominator coefficients ordered in descending powers of z.
Numz = [2, 0];
Denz = [4, 0, 3, -1];
Gzl = tf(Numz, Denz, -1)
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!