tf function doesn't work
Show older comments
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 Comment
lounis chehrit
on 10 Jun 2021
It seems that the Control system toolbox is not installed !
You have to install It first !
Accepted Answer
More Answers (1)
Nasreddine
on 5 Jan 2025
Edited: Walter Roberson
on 5 Jan 2025
clear all ;
close all ;
clc ;
s=tf('s');
G=0.8/(0.5*s+1);
H=feedback(G,1);
step(H);
grid
1 Comment
Walter Roberson
on 5 Jan 2025
I do not understand how this answers the question about tf() not being found?
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!