DynamicSystems
MagnitudePlot
plot magnitude versus frequency
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
MagnitudePlot(sys, opts)
sys
-
System; system object to plot
opts
(optional) equation(s) of the form option = value; specify options for the MagnitudePlot command
In addition to the following options, the MagnitudePlot command takes many of the standard plot options; see plot,options.
adaptive = truefalse
Specifies whether the frequencies are determined adaptively. The adaptive algorithm takes the value of the linearfreq option into account when determining the frequency distribution. The default value is false.
decibels = truefalse
Specifies whether the magnitude is in decibels, that is, 20*log10(). If true, the magnitude is in decibels, otherwise, it is not transformed. The default value is assigned by DynamicSystems[SystemOptions].
form = exact, straight, or both
Specifies the form of the plot (does not affect the data). The default, exact, plots the exact transfer function. The value straight plots a straight-line approximation, typical of what is constructed by hand. The value both plots both exact and straight forms.
frequencies = list or Vector of nonnegative values
Specifies frequencies to be used to generate a frequency response. The list or Vector must be sorted, from smallest to largest. The units are determined by the hertz option.
hertz = truefalse
Specifies the unit of frequency. If this value is set to true, the unit of frequency is Hertz; otherwise, it is radians per second. The default value is assigned by DynamicSystems[SystemOptions].
legend = list or element
Specifies the legend for the plot. A list specifies a legend entry for each subsystem. The elements in the list correspond to the Matrix of subsystems taken in Fortran order. An element can be used for a one-by-one Matrix of subsystems. The default is no legend.
linearfreq = truefalse
Specifies the frequency scale. If this value is set to true, the scale is linear; otherwise, by default, the scale is logarithmic.
linearmag = truefalse
Specifies whether the vertical axis (magnitude) is a linear or logarithmic scale. If true, the scale is linear, otherwise it is logarithmic. The default is the value of the keyword option decibels.
Setting linearmag to false and decibels to true is generally not desirable; the effective scale is a logarithm of a logarithm, that is, decibels are plotted on a logarithmic scale. If the magnitude is less than one, the decibels are negative and that part of the plot does not appear.
method = function or matrix
Selects the method used to compute the frequency response. The function method generates the transfer functions of sys and evaluates them at the selected frequencies. The matrix method generates the state-space matrices of sys and evaluates the expression C·I⁢z−A−1·B+D at specific values of z. The default is to use the function method for frequency-domain systems (TF, Coeff, and ZPK), and to use the matrix method for time-domain systems (DE and SS).
numpoints = nonnegative integer
Specifies the number of points. The default is 100.
output = plot, data, or list of same
Specifies the output of MagnitudePlot. The name plot returns the plot structure. The name data returns the data. A list of those names returns a corresponding list of plots and data. The default is plot.
The data is returned as a Matrix for a single selected subsystem and as a list of Matrices for multiple selected subsystems. Each Matrix has two columns: the first is the horizontal component and the second is the vertical component.
parameters = set(name = complexcons) or list(name = complexcons)
Specifies numeric values for parameters in sys. These values override those specified by the parameters field of the system object, which in turn override the settings in in SystemOptions(parameters). The numeric value on the right-hand side of each equation is substituted for the name on the left-hand side in the expressions that define the model. No checking is done during the substitution to determine whether the substituted value is valid. For example, a complex value can be substituted for the coefficient of a polynomial. If the complex value had been originally assigned to the model at creation, a warning would be generated.
range = range( realcons )
Specifies the frequency range to plot. The default setting is to compute an appropriate range based on the locations of the zeros and poles of the transfer functions of the selected subsystems. Similarly, if the right-hand side of range is infinity, a maximum is computed based on the zeros and poles. The units are specified by the hertz option.
subsystem = [ posint, posint ] or list of same
Selects subsystems of a multi-input/multi-output system. Each selected subsystem is specified as a list of two indices: the first specifies the output and the second specifies the input. For example, 1,2 specifies the subsystem from the second input to the first output. A list of lists selects multiple subsystems. The default setting is to select all subsystems, using Fortran ordering. That is, for an m x n system, the default list of subsystems is [ [1,1], ..., [m,1], ..., [1,n], ..., [m,n] ].
The MagnitudePlot command plots magnitude versus frequency of the transfer-function of subsystems of sys, a System object.
If sys is a continuous system, its s-domain transfer function is computed and then converted to the real frequency domain using the transformation s -> I*omega, where omega is the angular frequency.
If sys is a discrete system, its z-domain transfer function is computed and then converted to the real frequency domain using the transformation z -> exp(I*omega*Ts), where omega is the angular frequency and Ts is the sample time.
The MagnitudePlot command takes all standard plot,options.
with⁡DynamicSystems:
sys≔ZeroPoleGain⁡0,1,2,4,6,1:
MagnitudePlot⁡sys
The commands to create the plot from the Plotting Guide are
sys≔NewSystem⁡diff⁡x⁡t,t,t=x⁡t+u⁡t,y⁡t=3⁢x⁡t+u⁡t,u,x,y
sys≔Diff. Equationcontinuous2 output(s); 1 input(s)inputvariable=u⁡toutputvariable=x⁡t,y⁡t
sys:-de
ⅆ2ⅆt2x⁡t=x⁡t+u⁡t,y⁡t=3⁢x⁡t+u⁡t
MagnitudePlot⁡sys,color=blue,green,title=System Responses
The DynamicSystems[MagnitudePlot] command was updated in Maple 2022.
The form option was introduced in Maple 2022.
For more information on Maple 2022 changes, see Updates in Maple 2022.
See Also
DynamicSystems[BodePlot]
DynamicSystems[PhasePlot]
DynamicSystems[SystemObject]
Download Help Document