Member of the filter design class.
[num2, den2] = lp2lp(num1, den1, w)
[a1, b2, c2, d2] = lp2lp(a1, b1, c1, d1, w)
Transforms an analog lowpass filter to a lowpass filter.
| Name | Description |
| num1, den1 | Specify the transfer function of the filter. |
| a1, b1, c1, d1 | Specify the state-space representation of the filter. |
| w | Specifies the cutoff frequency. |
| Name | Description |
| num2, den2 | Return the transfer function of the filter. |
| a2, b2, c2, d2 | Return the state-space representation of the filter. |
num1 = [2, 1, 9, 2, 0.1, 8];
den1 = [1, -9, 7, -3, 1, 0.1];
w = 50E3;
[num2, den2] = lp2lp(num1, den1, w)