Observability Matrix
This function creates the observability matrix.
obsv(A, C)
A
: State-space matrix, AC
: State-space matrix, Cobsv(A, C)
returns the observability matrix, obsvm
. where obsvm = | C CA CA^2 ... CA^(n-1) |
A <- rbind(c(0,1), c(-25,-4)) C <- rbind(c(1,0), c(0,1)) obsv(A, C)
ctrb
Useful links