zplane: Pole-zero plot

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/zplane.R

Description

Plot the poles and zeros of a model or filter.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Default S3 method:
zplane(filt, a, ...)

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

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

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

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.

a

the autoregressive (recursive) coefficients of an ARMA filter.

...

Additional arguments passed to plot.

Details

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

Value

No value is returned.

Author(s)

Tom Short

References

Octave Forge https://octave.sourceforge.io/

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

See Also

Arma, freqz

Examples

1
2
filt <- ellip(5, 0.5, 20, .2)
zplane(filt)

Example output

Attaching package: 'signal'

The following objects are masked from 'package:stats':

    filter, poly

signal documentation built on May 25, 2021, 3 p.m.

Related to zplane in signal...