Member of the linear systems class.
c = polyscale(a, b)
Scales the roots of a polynomial.
| Name | Description |
| a | Specifies a polynomial. |
| b | Specifies the scaling rate. |
| Name | Description |
| c | Returns the scaled polynomial. |
In c = polyscale(a, b), LabVIEW replaces the polynomial a[1]*z^n+...+a[n-1]*z+a[n] with the new polynomial c[1]*z^n+...+c[n-1]*z+c[n], where c[1] = a[1], ..., c[n-1] = a[n-1]*b^(n-2), c[n] = a[n]*b^(n-1).
a = rand(1, 6);
b = polyscale(a, 2);
ra = roots(a);
rb = roots(b);
plot(real(ra), imag(ra), 'ro', real(rb), imag(rb), 'b*')