Hi. I want creat a tranfer function have parameter,but i don't know how to do it.help me pls
1 次查看(过去 30 天)
显示 更早的评论
a*s + 3
--------------
s^2 + b*s + c
0 个评论
采纳的回答
Robert U
2017-10-6
Hi super bad,
have a look into the matlab function "tf":
Kind regards,
Robert
4 个评论
Robert U
2017-10-9
Just saw the discussion below. My answer comprises a function file. Star Strider gave it already as anonymous function.
Kind regards,
Robert
Walter Roberson
2017-10-9
MATLAB cannot create a transfer function that displays like
a s + 3
--------------
s^2 + b s + c
with literal characters 'a' and 'b' and 'c' showing up, except as a symbolic expression like Star Strider shows.
If particular numeric values are to be substituted, so it might for example show up as
5 s + 3
--------------
s^2 - 2 s + 17.1
then that can be done with the methods Robert or Star Strider show.
更多回答(2 个)
Star Strider
2017-10-6
11 个评论
Star Strider
2017-10-6
You never mentioned that as a specific requirement before.
What you want to do is not possible other than in the Symbolic Math Toolbox:
syms a b c s
sys = (a*s + 3)/(s^2 + b*s + c)
pretty(sys)
a s + 3
------------
2
s + b s + c
Stopping here.
Again, Good luck!
Walter Roberson
2017-10-7
Please post the actual question, including any requirements as to version restrictions or toolbox restrictions.
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!