sos2zp | R Documentation |
Convert digital filter second-order section data to zero-pole-gain form.
sos2zp(sos, g = 1)
sos |
Second-order section representation, specified as an nrow-by-6
matrix, whose rows contain the numerator and denominator coefficients of
the second-order sections: |
g |
Overall gain factor that effectively scales the output |
A list of class "Zpg" with the following list elements:
complex vector of the zeros of the model (roots of B(z)
)
complex vector of the poles of the model (roots of A(z)
)
overall gain (B(Inf)
)
Julius O. Smith III jos@ccrma.stanford.edu.
Conversion to R by, Geert van Boxtel G.J.M.vanBoxtel@gmail.com
filter
sos <- rbind(c(1, 0, 1, 1, 0, -0.81), c(1, 0, 0, 1, 0, 0.49))
zpk <- sos2zp(sos)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.