MATLAB CONTROL SYSTEM TOOLBOX 9 Podręcznik Użytkownika Strona 617

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 649
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 616
tf
11-227
To do this, type
num = {[1 1] ; 1}
den = {[1 2 2] ; [1 0]}
H = tf(num,den,'inputn','current',...
'outputn',{'torque' 'ang. velocity'},...
'variable','p')
Transfer function from input "current" to output...
p + 1
torque: -------------
p^2 + 2 p + 2
1
ang. velocity: -
p
Note how setting the 'variable' property to 'p' causes the result to be
displayed as a transfer function of the variable .
Example 2
To use a rational expression to create a SISO TF model, type
s = tf('s');
H = s/(s^2 + 2*s +10);
This produces the same transfer function as
h = tf([1 0],[1 2 10]);
Example 3
Specify the discrete MIMO transfer function
p
Hz()
1
z 0.3+
-----------------
z
z 0.3+
-----------------
z 2+
z 0.3+
-----------------
3
z 0.3+
-----------------
=
Przeglądanie stron 616
1 2 ... 612 613 614 615 616 617 618 619 620 621 622 ... 648 649

Komentarze do niniejszej Instrukcji

Brak uwag