Plot the poles and zeros of a filter or model on the complex Z-plane
zplane(filt,...)## S3 method for class 'Arma'zplane(filt,...)## S3 method for class 'Ma'zplane(filt,...)## S3 method for class 'Sos'zplane(filt,...)## S3 method for class 'Zpg'zplane(filt,...)## Default S3 method:zplane(filt, a,...)
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.
Returns
No value is returned.
Details
Poles are marked with an x, and zeros are marked with an o.
Note
When results of zplane are printed, plot will be called. As with lattice plots, automatic printing does not work inside loops and function calls, so explicit calls to print or plot are needed there.