|
Calling Sequence
|
|
Coefficients(opts)
Coefficients(sys, opts)
Coefficients(tf, opts)
Coefficients(z, p, k, opts)
Coefficients(num, den, opts)
Coefficients(a, b, c, d, opts)
Coefficients(de, invars, outvars, opts)
|
|
Parameters
|
|
sys
|
-
|
System; system object
|
tf
|
-
|
algebraic or Matrix(algebraic); transfer function
|
z
|
-
|
list(algebraic) or Matrix(list(algebraic)); zeros
|
p
|
-
|
list(algebraic) or Matrix(list(algebraic)); poles
|
k
|
-
|
algebraic or Matrix(algebraic); gain(s)
|
num
|
-
|
list(algebraic) or Matrix (list(algebraic)); numerator coefficients
|
den
|
-
|
list(algebraic) or Matrix (list(algebraic)); denominator coefficients
|
a
|
-
|
Matrix; state-space matrix A
|
b
|
-
|
Matrix; state-space matrix B
|
c
|
-
|
Matrix; state-space matrix C
|
d
|
-
|
Matrix; state-space matrix D
|
de
|
-
|
equation or list(equation); diff-equations
|
invars
|
-
|
name, anyfunc(name) or list of same; input variables
|
outvars
|
-
|
name, anyfunc(name) or list of same; output variables
|
opts
|
-
|
(optional) equation(s) of the form option = value; specify options for the Coefficients command
|
|
|
|
|
Options
|
|
|
The opts arguments are optional arguments of the form option = value, where option is one of the names listed below. These arguments correspond to keyword parameters; the left side of an equation is the keyword and the right side is the value. Each keyword parameter has a default value that is assigned if the parameter is not passed.
|
|
The following paragraphs describe each of the keyword parameters. The first line of each paragraph specifies the format of the argument: the left side is the keyword and the right side specifies the type of the value. If the type is truefalse, then passing just the keyword is equivalent to passing keyword = .
|
|
If true and the z and p (and k) parameters are used, then the conjugate of any complex zero or pole is added to the respective list. For example, if conjugate = true then is equivalent to . The default value is assigned by DynamicSystems[SystemOptions].
|
|
The name of the system. The default is the empty string.
|
•
|
inputvariable = list of name or function(name)
|
•
|
outputvariable = list of name or function(name)
|
•
|
statevariable = list of name or function(name)
|
•
|
parameters = list or set of name=complexcons
|
|
Specifies values for symbolic parameters. These are used in operations that require numeric evaluation, such as plotting.
|
|
|
Description
|
|
•
|
The Coefficients command creates a coefficients (Coeff) system object. The frequency-domain behavior of the object is modeled by lists of the coefficients of the numerators and denominators of transfer-functions.
|
•
|
The input can be specified as one of several representations: transfer function (TF), zero-pole-gain (ZPK), coefficients (Coeff), state-space (SS), or diff-equations (DE).
|
•
|
If no input is provided, a unity-gain Coeff system is created.
|
•
|
The optional parameter sys is a system object; it is converted to the Coeff representation. All options are ignored.
|
•
|
The optional parameter tf is the transfer function of a TF system. For a single-input/single-output system, tf is a rational function (ratpoly). For a multi-input/multi-output system, tf is a Matrix of rational functions. The indeterminate of the polynomials depends on whether the system is continuous or discrete; a continuous system typically uses s while a discrete system typically uses z as the indeterminate. The actual names are assigned by DynamicSystems[SystemOptions].
|
•
|
The optional parameters z, p, and k are the zeros, poles, and gain, respectively, of a ZPK system. For a single-input/single-output system, z and p are lists and k is an algebraic expression. For a multi-input/multi-output system, z and p are Matrices of lists and k is a Matrix of algebraic expressions.
|
•
|
The optional parameters num and den are the coefficients of the numerator and denominator, respectively, of a Coeff system. For a single-input/single-output system, num and den are lists, the first element being the coefficient of the highest order term. For a multi-input/multi-output system, num and den are Matrices of lists.
|
•
|
The optional parameters a, b, c, and d are the four state-space matrices, A, B, C, and D, respectively, of an SS system.
|
•
|
The optional parameter de is the difference/differential equation(s) of a DE system. A list is used to specify more than one equation.
|
•
|
The parameters invars and outvars specify the input and output variables of difference/differential equations. They are not required, but if either is not specified then the corresponding keyword parameter inputvariable or outputvariable must be assigned. If both positional and keyword parameters are specified, the keyword parameter take precedence.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
| (9) |
|
|
Compatibility
|
|
•
|
The DynamicSystems[Coefficients] command was updated in Maple 18.
|
•
|
The parameters option was introduced in Maple 18.
|
|
|
|