Extract the unwrapped phase of a complex input
Signal Operations
dspsigops
The Phase Extractor block extracts the unwrapped phase of a complex input. The input can be a vector or matrix. For 2D inputs, the block treats each column as an independent channel. The first dimension is the length of the channel. The second dimension is the number of channels. The block treats 1D inputs as one channel.
The block preserves the input size and dimension, and the output port rate equals the input port rate.
This example shows how to use the Phase Extractor block to extract the phase of a sign wave. The DSP Sine Wave block represents the system input signal. Set the DSP Sine Wave block parameters to the following:
Frequency set to 10
Hz
Sample mode set to Discrete
Output complexity set to
Complex
Sample time set to 1/1000
Sample per frame set to 128
Do not select the Phase Extractor block parameter Unwrap phase only within the frame.
The Time Scope block displays the extracted phase.
When you clear this check box, the block ignores boundaries between the input frames. When you select this check box, the block treats each frame of input data independently, and resets the initial phase value for each new input frame.
Select the simulation type from the following:
Code generation
Interpreted execution
Port | Supported Data Types |
---|---|
Input |
|
Output |
|
DSP System Toolbox |
Consider an input frame of length N:
The step
method acts on this frame and produces this output:
where:
Here, i runs from 1 to N. The angle
function returns the phase angle in radians.
If the input signal consists of multiple frames:
If you set TreatFramesIndependently
to true
,
the step
method treats each frame independently. Therefore, in each
frame, the step
method calculates the phase using the preceding
formula where:
is 0.
is 1.
If you set TreatFramesIndependently
to
false
, the step
method ignores boundaries between
frames. Therefore, in each frame, the step
method calculates the
phase using the preceding formula where:
is the last unwrapped phase from the previous frame.
is the last sample from the previous frame.