Creating and Manipulating Models | ![]() ![]() |
Explicit Conversion
Model conversions are performed by tf
, ss
, zpk
, and frd
. Given any TF, SS, or ZPK model sys
, the syntax for conversion to another model type is
sys = tf(sys) |
% Conversion to TF |
sys = zpk(sys) |
% Conversion to ZPK |
sys = ss(sys) |
% Conversion to SS |
sys = frd(sys,frequency) |
% Conversion to FRD |
Notice that FRD models can't be converted to the other model types. In addition, you must also include a vector of frequencies (frequency
) as an input argument when converting to an FRD model.
For example, you can convert the state-space model
to a zero-pole-gain model by typing
Note that the transfer function of a state-space model with data is
for continuous-time models, and
![]() | Model Conversion | Automatic Conversion | ![]() |