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

14
FOTF Toolbox/@foss/disp.m Normal file
View File

@ -0,0 +1,14 @@
function disp(G)
% display - display an FOSS. This function will be called automatically
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 28 March, 2017
% Last modified 18 May, 2022
disp('E*(d^alpha*X)(t)=A*X(t)+B*U(t-T)'), T=G.ioDelay;
disp('Y(t)=C*X(t)+D*U(t-T)'); ss(G.a,G.b,G.c,G.d)
if ~isempty(G.E), disp('Descriptor matrix'), E=G.E, end
if sum(T(:)), disp(['Time Delay is = ' mat2str(T)]); end
disp(['alpha = ',num2str(G.alpha)]);
if ~isempty(G.x0), x0=G.x0;
disp(['Initil state vector x0 = [' num2str(x0(:).'),']'])
end, end