Home > freetb4matlab > control > ss2tf.m

ss2tf

PURPOSE ^

% Conversion from transfer function to state-space.

SYNOPSIS ^

function [num, den] = ss2tf (a, b, c, d)

DESCRIPTION ^

% -*- texinfo -*-
% @deftypefn {Function File} {[@var{num}, @var{den}] =} ss2tf (@var{a}, @var{b}, @var{c}, @var{d})
% Conversion from transfer function to state-space.
% The state space system:
% @iftex
% @tex
% $$ \dot x = Ax + Bu $$
% $$ y = Cx + Du $$
% @end tex
% @end iftex
% @ifinfo
% @example
%       .
%       x = Ax + Bu
%       y = Cx + Du
% @end example
% @end ifinfo
%
% is converted to a transfer function:
% @iftex
% @tex
% $$ G(s) = { { \rm num }(s) \over { \rm den }(s) } $$
% @end tex
% @end iftex
% @ifinfo
% @example
%
%                 num(s)
%           G(s)=-------
%                 den(s)
% @end example
% @end ifinfo
%
% used internally in system data structure format manipulations.
% @end deftypefn

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003