tf function doesn't work
显示 更早的评论
when I try to use tf function this is what I get :
>> s = tf('s')
Unrecognized function or variable 'tf'.
Did you mean:
>> s = tfe('s')
1 个评论
lounis chehrit
2021-6-10
It seems that the Control system toolbox is not installed !
You have to install It first !
采纳的回答
更多回答(1 个)
clear all ;
close all ;
clc ;
s=tf('s');
G=0.8/(0.5*s+1);
H=feedback(G,1);
step(H);
grid
1 个评论
Walter Roberson
2025-1-5
I do not understand how this answers the question about tf() not being found?
类别
在 帮助中心 和 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!
