1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
## Copyright (C) 2009-2016 Lukas F. Reichlin
##
## This file is part of LTI Syncope.
##
## LTI Syncope is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## LTI Syncope is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with LTI Syncope. If not, see <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {[@var{a}, @var{b}, @var{c}, @var{d}, @var{tsam}] =} ssdata (@var{sys})
##
## Access state-space model data.
## Argument @var{sys} is not limited to state-space models.
## If @var{sys} is not a state-space model, it is converted automatically.
## @var{sys} can also be a real-valued matrix which is then
## interpreted as continuous-time static gain system.
##
## @strong{Inputs}
## @table @var
## @item sys
## Any type of @acronym{LTI} model or a real-valued matrix which is
## interpreted as continous-time static gain.
## @end table
##
## @strong{Outputs}
## @table @var
## @item a
## State matrix (n-by-n).
## @item b
## Input matrix (n-by-m).
## @item c
## Measurement matrix (p-by-n).
## @item d
## Feedthrough matrix (p-by-m).
## @item tsam
## Sampling time in seconds. If @var{sys} is a continuous-time model,
## a zero is returned.
## @end table
##
## @strong{Compatibility issue}
##
## If @var{sys} is given by an input-output description, like, e.g.,
## a transfer function, the resulting state-space model has a
## different form than the one provided by Matlab,
## see
## @inlinefmtifelse{latex, @link{@@ss/ss,@@ss/ss}, @ref{@@ss/ss}}
## for details.
##
## @end deftypefn
## Author: Lukas Reichlin <lukas.reichlin@gmail.com>
## Created: September 2009
## Version: 0.4
function [a, b, c, d, tsam, scaled] = ssdata (sys)
if (! isa (sys, 'lti'))
if (! is_real_matrix (sys))
error (["ssdata: has to be called with an @lti object ",...
"or with a real matrix (static gain)\n"]);
else
sys = ss (sys);
endif
endif
if (! isa (sys, "ss"))
sys = ss (sys);
endif
[a, b, c, d, e, ~, scaled] = __sys_data__ (sys);
[a, b, c, d, e] = __dss2ss__ (a, b, c, d, e);
tsam = sys.tsam;
endfunction
%!test
%! systf = tf ({[1 2 3],[1 1 1]},{[1 2 1],[1 3 3 1]});
%! [A,B,C,D,tsam] = ssdata (systf);
%! s = -6:1.2:6;
%! Gss = zeros(length(s),2);
%! Gtf = zeros(length(s),2);
%! for j = 1:length(s)
%! Gss(j,:) = C*inv(eye(3,3)*i*s(j)-A)*B + D;
%! Gtf(j,:) = systf (s(j));
%! endfor
%! assert (Gss, Gtf, 1e-6);
%! assert (tsam, 0, 1e-6);
|