powered by
This function creates the observability matrix.
obsv(A, C)
State-space matrix, A
State-space matrix, C
obsv(A, C) returns the observability matrix, obsvm. where obsvm = | C CA CA^2 ... CA^(n-1) |
obsvm
ctrb
# NOT RUN { A <- rbind(c(0,1), c(-25,-4)) C <- rbind(c(1,0), c(0,1)) obsv(A, C) # }
Run the code above in your browser using DataLab