zp2tf | R Documentation |
Convert digital filter zero-pole-gain data to transfer function form
zp2tf(z, p, g = 1)
z |
complex vector of the zeros of the model |
p |
complex vector of the poles of the model |
g |
overall gain. Default: 1. |
A list of class "Arma" with the following list elements:
moving average (MA) polynomial coefficients
autoregressive (AR) polynomial coefficients
Geert van Boxtel, gjmvanboxtel@gmail.com
as.Arma
, filter
g <- 1
z <- c(0, 0)
p <- pracma::roots(c(1, 0.01, 1))
ba <- zp2tf(z, p, g)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.