S-domain Transfer Function Callout?

16 次查看(过去 30 天)
Len
Len 2013-12-17
回答: Benjamin 2014-2-11
I'm new to Matlab. I'm trying to enter an s-domain transfer function, but I don't have the Control Toolbox.
In a web article I saw this nomenclature: H=@(s) (s+2)./(0.01*s.^2+0.02*s+2);
This works, but I cannot find any info on what the "=@(s)" part of the line does. Any ideas?

回答(1 个)

Benjamin
Benjamin 2014-2-11
Not a 100 percent on this, but it looks as though @s means to define s as the variable of the transfer function.
I think another way to describe it would be
s = tf('s'); H = (s+2)/(0.01s^2+0.02s+2);

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by