next up previous contents
Next: Flags Up: Analysis in the Time Previous: Time Specification   Contents

Plot Specification

A plot in the time domain is specified as:

plot: [<TimePlotSpec>]* ;
where <TimePlotSpec> can be:
impulse( <transfer function> )
step( <transfer function> )
<transfer function> can be either F, G, or H, as defined in Section 7.2.1.

In the example below, the step response of a bandpass filter is determined:

chebyshev(3, 3.0);
transform: bandpass(10, 1);
time= lin(0, 50, 1000);
plot: step(H);
The filter is generated from a third order Chebyshev lowpass equivalent filter, as explained in Section 6.2. The result is shown in Figure 11.
Figure 11: The step response of a bandpass filter.
\includegraphics{example/step}


2009-06-03