This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

View File

@ -0,0 +1,12 @@
function G1=ss_extract(G)
% ss_extract - extract the SS object from an FOSS object
%
% G1=ss_extract(G)
%
% G - an FOSS object
% G1 - the extracted integer-order state space model
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 28 March, 2017
G1=ss(G.a,G.b,G.c,G.d); G1.E=G.E;
end