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/size.m Normal file
View File

@ -0,0 +1,14 @@
function [p,q,n]=size(G)
% size - extract the numbers of inputs, outputs and states of an FOSS object
%
% [p,q,n]=size(G)
%
% G - an FOSS object
% n, m - the numbers of the inputs and outputs
% n - the number of states
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 28 March, 2017
% Last modified 18 May, 2022
q=size(G.c,1); p=size(G.b,2); n=length(G.a);
end