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

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 649
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 548
obsv
11-159
11obsv
Purpose Form the observability matrix
Syntax Ob = obsv(A,B)
Ob = obsv(sys)
Description obsv computes the observability matrix for state-space systems. For an n-by-n
matrix
A and a p-by-n matrix C, obsv(A,C) returns the observability matrix
with n columns and np rows.
Ob = obsv(sys) calculates the observability matrix of the state-space model
sys. This syntax is equivalent to executing
Ob = obsv(sys.A,sys.C)
The model is observable if Ob has full rank n .
Example Determine if the pair
A =
1 1
4 –2
C =
1 0
0 1
is observable. Type
Ob = obsv(A,C);
% Number of unobservable states
unob = length(A)–rank(Ob)
Ob
C
CA
CA
2
:
CA
n 1
=
Przeglądanie stron 548
1 2 ... 544 545 546 547 548 549 550 551 552 553 554 ... 648 649

Komentarze do niniejszej Instrukcji

Brak uwag