polystab: Stabilize polynomial

View source: R/polystab.R

polystabR Documentation

Stabilize polynomial

Description

Stabilize the polynomial transfer function by replacing all roots outside the unit circle with their reflection inside the unit circle.

Usage

polystab(a)

Arguments

a

vector of polynomial coefficients, normally in the z-domain

Value

Vector of stabilized polynomial coefficients.

Author(s)

Paul Kienzle, pkienzle@users.sf.net.
Conversion to R by Geert van Boxtel, G.J.M.vanBoxtel@gmail.com

Examples

unstable <- c(-0.5, 1)
zplane(unstable, 1)
stable <- polystab(unstable)
zplane(stable, 1)


gjmvanboxtel/gsignal documentation built on Nov. 22, 2023, 8:19 p.m.