idss
State-space model with identifiable parameters
Description
Use idss
to create a continuous-time or discrete-time state-space
model with identifiable (estimable) coefficients, or to convert Dynamic System Models to
state-space form.
A state-space model of a system with input vector u, output vector y, and disturbance e takes the following form in continuous time:
In discrete time, the state-space model takes the following form:
For idss
models, the elements of the state-space matrices
A, B, C, and D
can be estimable parameters. The elements of the state disturbance K can
also be estimable parameters. The idss
model stores the values of these
matrix elements in the A
, B
, C
,
D
, and K
properties of the model.
Creation
You can obtain an idss
model object in one of three ways.
Estimate the
idss
model based on the input-output measurements of a system by usingn4sid
orssest
. These estimation commands estimate the values of the estimable elements of the state-space matrices. The estimated values are stored in theA
,B
,C
,D
, andK
properties of the resultingidss
model. TheReport
property of the resulting model stores information about the estimation, such as on the handling of initial state values and the options used in estimation. For example:sys = ssest(data,nx); A = sys.A; B = sys.B; sys.Report
For more examples of estimating an
idss
model, seessest
orn4sid
.Create an
idss
model using theidss
command. For example:You can create ansys = idss(A,B,C,D)
idss
model to configure an initial parameterization for estimation of a state-space model to fit measured response data. When you do so, you can specify constraints on one or more of the state-space matrix elements. For instance, you can fix the values of some elements, or specify minimum or maximum values for the free elements. You can then use the configured model as an input argument to an estimation command (ssest
orn4sid
) to estimate parameter values with those constraints. For examples, see Create State-Space Model with Identifiable Parameters and Configure Identifiable Parameters of State-Space Model.Convert an existing dynamic system model to an
idss
model using theidss
command. For example:sys_ss = idss(sys_tf);
For information on functions you can use to extract information from or transform
idss
model objects, see Object Functions.
Syntax
Description
Create State-Space Model
creates a state-space
model with specified state-space matrices sys
= idss(A,B,C,D)A,B,C,D
. By default, sys
is a discrete-time model with
an unspecified sample time and no state disturbance element. Use this syntax especially
when you want to configure an initial parameterization as an input to a state-space
estimation function such as n4sid
or ssest
.
sets additional properties using one or more name-value pair arguments. Specify
name-value pair arguments after any of the input argument combinations in the previous
syntaxes.sys
= idss(___,Name,Value
)
Convert Dynamic System Model to State-Space Model
converts sys
= idss(sys0
,'split')sys0
to idss
model form, and treats the
last Ny input channels of sys0
as noise channels
in the returned model.
sys0
must be a numeric (nonidentified) tf
(Control System Toolbox), zpk
(Control System Toolbox), or ss
(Control System Toolbox) model object. Also, sys0
must have at least as many
inputs as outputs.
Input Arguments
Properties
Object Functions
In general, any function applicable to Dynamic System Models is
applicable to an idss
model object. These functions are of four general types.
Functions that operate and return
idss
model objects enable you to transform and manipulateidss
models. For instance:Functions that perform analytical and simulation functions on
idss
objects, such asbode
andsim
Functions that retrieve or interpret model information, such as
advice
andgetpar
Functions that convert
idss
objects into a different model type, such asidpoly
oridtf
for time domain oridfrd
for continuous domain
The following lists contain a representative subset of the functions that you can use with
idss
models.
Examples
Version History
Introduced in R2006a