MATLAB: I have a state space system like this and I want to Augment the discrete-time plant model with an integrator, and check controllability and observability of the augmented model.

controllerMATLABstate

I have a state space system like this and I want to Augment the discrete-time plant model with an integrator, and check controllability and observability of the augmented model.

Best Answer

Integral in discrete time using Forward Euler method;
x(k+1) = x(k) + dt*u;
y(k) = x(k);
Other methods can be found here.
Related Question