Clear Filters
Clear Filters

discretizing a continuous state-space model

73 views (last 30 days)
How can I discretize this state-space model using MATLAB:
x°(t)=Ax(t)+BU(t)+g
  1 Comment
Souarv De
Souarv De on 30 May 2022
%% STEP 1: Continuous State Space Model (CSSM)
sys = ss(A,B<C<D);
%% Convert CSSM to Discrete State Space Model (DSSM)
sys_dis = c2d(sys,Ts); % Where Ts is the sampling period

Sign in to comment.

Answers (1)

Wooshik Kim
Wooshik Kim on 5 Jul 2018
Edited: Wooshik Kim on 5 Jul 2018
you can use ss function to create a discrete state space model
discreteSys = ss(A,B,C,D,Ts)
you should also linearize the state space equation with respect to equilibrium point.

Categories

Find more on Electrical Block Libraries in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!