<< dcontr en_US gosbank >>

DeCaToKi >> en_US > dcontr

dcontr

This fuction compute the C,R,I-Observability of Descriptor Systems using direct approach

Calling Sequence

nC=dobsv(E,A,C)
[nC,Co_mat]=dobsv(E,A,C)
[nC,Co_mat,nR,Ro_mat]=dobsv(E,A,C)
[nC,Co_mat,nR,Ro_mat,nI,Io_mat]=dobsv(E,A,C)

Parameters

nC:

Rank of C-Observability Matrix

C_mat:

C--Observability Matrices

nR:

Rank of R-Observability matrix

nC:

R-Observability Matrix

nI:

Rank of I-Observability matrix

C_mat:

I-Observability matrix

R_mat:

R-Observability matrix

E,A,C:

E, A and C matrices of descriptor system (E singular)

Examples

// This fuction compute the C,R,I_Observability
    
// For detailed information look into dobsv.sci in macros path

E=[1 0 0 0; 0 1 0 0; 0 0 0 0; 0 0 0 0] ;
A=[-0.8775 0 0.526 -0.0274;
  -5.8500  -0.5 0.1481 0.0026; 
  0      0.5   -1     0.2;
  0      2.6522  -0.274  -2];
B=[ 0 0; -0.0856  0.01; 0 0; 0 1];
C=[1 1 0 1; 0 0 1 1;0 0 1 0];
// only rank of C- Observability matrix with direct approach

[nC]=dobsv(E,A,B);
// Rank and matrices of C-Observability with direct aproach
[nC,Co_mat]=dobsv (E,A,B,0);
// all ranks and matrices with direct method approach
[nC,Co_mat,nR,Ro_mat,nI,Io_mat]=dobsv(E,A,C)

See also

Author

Bibliography

[1] Lewis, F. L. (1985). Fundamental, reachability, and observability matrices for discrete descriptor systems. IEE Transactions on Automatic Control 30(5), 502–505.

[2] Koumboulis, F. N. and Mertzios,(1999), B. G. on Kalman Controlability and Observability Criteria for Singular Systems Circuits Systems and Signals, 18, 269-290

[3] Duan, G.-R. Gao, D. Y. and Ogden, R. W. (Eds.) Analysis and Desing of Descriptor Linear Systems Springer, 2010

<< dcontr en_US gosbank >>