functionfilterToNormalized
Given [p^2,p] and [p] coefficients, transform to normalized form with highest power of p equal 1
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[:] | c1 | [p] coefficients of polynomials (c1[i]*p + 1) | |
| Real[:,2] | c2 | [p^2, p] coefficients of polynomials (c2[i,1]*p^2 + c2[i,2]*p + 1) |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[size(c1, 1)] | n1 | [p^0] coefficients of polynomials c1[i]*(p+1/c1[i]) | |
| Real[size(c2, 1),2] | n2 | [p, p^0] coefficients of polynomials c2[i,1]*(p^2 + (c2[i,2]/c2[i,1])*p + (1/c2[i,1])) | |
| Real | k | Gain (product(1/c1[i])*(1/c2[i,1]) |