<< xcorr2 | Signal Processing |
[NUM, DEN] = zp2tf(Z, P, K) |
Locations of zeros, organized in columns for each system output.
Locations of poles, recorded as a column vector.
Gains.
Coefficients in the numerator, organized by rows corresponding to each system output.
Coefficients in the denominator, arranged as a row vector.
[NUM, DEN] = zp2tf(Z, P, K) returns polynomial transfer function representation from zeros and poles.
p = [0.5;0.45+0.5i;0.45-0.5i];
z = [-1;i;-i];
k = 1;
[n, d] = zp2tf(z, p, k)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET