Files
FractionOrderSystem/FOTF Toolbox/@foss/ss_extract.m

13 lines
320 B
Mathematica
Raw Normal View History

2023-11-14 17:10:27 +08:00
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