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,10 @@
function a=double(G)
%double - convert FOTF to double, if possible
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 28 May, 2022
if G.num.na==0 && G.den.na==0
a=G.num.a./G.den.a;
else, error('G contains dynamic terms, cannot be converted into double')
end
end