S-domain Transfer Function Callout?
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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?
0 Commenti
Risposte (1)
Benjamin
il 11 Feb 2014
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);
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!