obsv function

Observability Matrix

Observability Matrix

This function creates the observability matrix.

obsv(A, C)

Arguments

  • A: State-space matrix, A
  • C: State-space matrix, C

Returns

obsv(A, C) returns the observability matrix, obsvm. where obsvm = | C CA CA^2 ... CA^(n-1) |

Examples

A <- rbind(c(0,1), c(-25,-4)) C <- rbind(c(1,0), c(0,1)) obsv(A, C)

See Also

ctrb

  • Maintainer: Ben C. Ubah
  • License: GPL-2
  • Last published: 2017-12-12

Useful links