Everytime I type s=tf('s') appears the following error: Undefined function 'tf' for input arguments of type 'char'. How I can fix this error?
Thanks, Sergio.

 採用された回答

Image Analyst
Image Analyst 2016 年 5 月 30 日

2 投票

It's possible you don't have the Signal Processing Toolbox, which has the tf() function in it. Type ver on the command line to see if you have that toolbox.

4 件のコメント

FRANCESCO BAROZZI
FRANCESCO BAROZZI 2017 年 6 月 20 日
編集済み: FRANCESCO BAROZZI 2017 年 6 月 20 日
i have the Signal Processing Toolbox in my matlab.
command s=tf('s') stop to work after a windows update! After this S.O. update i opened matlab and prompted me to insert my license , like the first time i run the program. i think is a conflict betwen matlab and window 10 !!!
how i can fix?
Image Analyst
Image Analyst 2017 年 6 月 21 日
You can call the Mathworks for fast and free telephone help - that's the fastest way believe it or not. Did I mention that it was free, so you have no excuse not to call them?
John BG
John BG 2017 年 6 月 21 日
who is the question originator, Mr Sergio Muñoz or Mr Francesco Barozzi?
Jan
Jan 2017 年 6 月 22 日
@John BG: As you can see, Sergio asked the question in 2016, and Francesco posted a concerning question in the comment section now.

サインインしてコメントする。

その他の回答 (1 件)

John BG
John BG 2016 年 5 月 30 日

0 投票

If you key in the polynomials directly
tf([1 -2 1],[3 -.4] )
ans =
s^2 - 2 s + 1
-------------
3 s - 0.4
tf works fine.
Perhaps you mean
tf([1 0],1)
ans =
s
If you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by