S-domain Transfer Function Callout?

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?

Antworten (1)

Benjamin
Benjamin am 11 Feb. 2014

0 Stimmen

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);

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Gefragt:

Len
am 17 Dez. 2013

Beantwortet:

am 11 Feb. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by