Learn R Programming

gsignal (version 0.3-7)

zplane: Zero-pole plot

Description

Plot the poles and zeros of a filter or model on the complex Z-plane

Usage

zplane(filt, ...)

# S3 method for Arma zplane(filt, ...)

# S3 method for Ma zplane(filt, ...)

# S3 method for Sos zplane(filt, ...)

# S3 method for Zpg zplane(filt, ...)

# S3 method for default zplane(filt, a, ...)

Value

No value is returned.

Arguments

filt

for the default case, the moving-average coefficients of an ARMA model or filter. Generically, filt specifies an arbitrary model or filter operation.

...

additional arguments are passed through to plot.

a

the autoregressive (recursive) coefficients of an ARMA filter.

Author

Paul Kienzle, pkienzle@users.sf.net,
Stefan van der Walt stefan@sun.ac.za,
Mike Miller.
Conversion to R by Tom Short,
adapted by Geert van Boxtel, gjmvanboxtel@gmail.com

Details

Poles are marked with an x, and zeros are marked with an o.

References

https://en.wikipedia.org/wiki/Pole-zero_plot

See Also

freqz

Examples

Run this code
## elliptic low-pass filter
elp <- ellip(4, 0.5, 20, 0.4)
zplane(elp)

Run the code above in your browser using DataLab