polyphase
Polyphase decomposition of multirate filter
Description
Examples
Polyphase Matrix of an FIR Interpolator
When you create a multirate filter that uses polyphase decomposition, polyphase lets you analyze the component filters individually by returning the components as rows in a matrix. First, create an interpolate-by-three filter.
hs = dsp.FIRInterpolator
hs = dsp.FIRInterpolator with properties: InterpolationFactor: 3 NumeratorSource: 'Property' Numerator: [0 -1.2906e-04 -2.2804e-04 0 5.5461e-04 8.0261e-04 0 -0.0015 -0.0020 0 0.0034 0.0043 0 -0.0067 -0.0083 0 0.0121 0.0145 0 -0.0205 -0.0241 0 0.0332 0.0388 0 -0.0530 -0.0620 0 0.0861 0.1027 0 -0.1540 -0.1976 0 ... ] (1x72 double) Use get to show all properties
In this syntax, the matrix p
contains all of the subfilters for hm
, one filter per matrix row.
p = polyphase(hs)
p = 3×24
0 0 0 0 0 0 0 0 0 0 0 0 1.0000 0 0 0 0 0 0 0 0 0 0 0
-0.0001 0.0006 -0.0015 0.0034 -0.0067 0.0121 -0.0205 0.0332 -0.0530 0.0861 -0.1540 0.4088 0.8247 -0.1976 0.1027 -0.0620 0.0388 -0.0241 0.0145 -0.0083 0.0043 -0.0020 0.0008 -0.0002
-0.0002 0.0008 -0.0020 0.0043 -0.0083 0.0145 -0.0241 0.0388 -0.0620 0.1027 -0.1976 0.8247 0.4088 -0.1540 0.0861 -0.0530 0.0332 -0.0205 0.0121 -0.0067 0.0034 -0.0015 0.0006 -0.0001
Finally, using polyphase
without an output argument opens the Filter Visualization Tool, ready for you to use the analysis capabilities of the tool to investigate the interpolator hm
.
polyphase(hs)
The fvtool shows the coefficients of the subfilters. To see the magnitude response of the subfilters, click on the Magnitude Response
button on the fvtool toolstrip.
Input Arguments
sysobj
— Input filter
filter System object
Input filter, specified as as one of the following filter System objects:
arithType
— Arithmetic type
'double'
(default) | 'single'
| 'Fixed'
Specify the arithmetic used in computing the polyphase matrix. When you
specify 'double'
or 'single'
, the
function performs double- or single-precision analysis. When you specify
'fixed'
, the arithmetic changes depending on the
setting of the CoefficientDataType
property and whether
the System object is locked or unlocked.
Details for Fixed-Point Arithmetic
System Object State | Coefficient Data Type | Rule |
---|---|---|
Unlocked | 'Same as input' | The function assumes that the coefficient data type is signed, 16 bit, and autoscaled. The function performs fixed-point analysis based on this assumption. |
Unlocked | 'Custom' | The function performs fixed-point analysis based on the
setting of the
CustomCoefficientsDataType
property. |
Locked | 'Same as input' | When the input data type is 'double'
or 'fixed' , the function assumes that the
coefficient data type is signed, 16-bit, and autoscaled. The
function performs fixed-point analysis based on this
assumption. |
Locked | 'Custom' | The function performs fixed-point analysis based on the
setting of the
CustomCoefficientsDataType
property. |
When you do not specify the arithmetic for non-CIC structures, the function uses double-precision arithmetic if the filter System object is in an unlocked state. If the System object is locked, the function performs analysis based on the locked input data type. CIC structures only support fixed-point arithmetic.
Output Arguments
p
— polyphase matrix
matrix
Polyphase matrix p
of the multirate filter. Each row in
the matrix corresponds to a polyphase branch. The first row of matrix
p
represents the first polyphase branch, the second
row the second polyphase branch, and so on to the last polyphase branch. The
number of columns in p
corresponds to the number of
filter taps per polyphase branch.
Version History
Introduced in R2011a
See Also
Open Example
You have a modified version of this example. Do you want to open this example with your edits?
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other bat365 country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)