DSP Lab2
DSP Lab2
Objectives
The goal of this Part is to gain familiarity with complex numbers and their use in representing sinusoidal signals
such as x (t )= Acos ( ωt +∅ ) as complex exponentials z (t )= A e jθ e jωt . The key is to use the appropriate complex
amplitude together with the real part operator as follows:
jθ jωt
x (t )= Acos ( ωt +∅ )=Real { A e e }
How to work with Complex Numbers in MATLAB
Familiarization with Matalb Function and commands for Complex Exponentials
Sinusoid Addition Using Complex Exponentials
Lab Instructions
The students should perform and demonstrate each lab task separately for step-wise evaluation
Each group shall submit one lab report on LMS within 5 days after lab is conducted. Lab report
submitted via email will not be graded.
Students are however encouraged to practice on their own in spare time for enhancing their
skills.
Lab Report Instructions
All questions should be answered precisely to get maximum credit. Lab report must ensure following
items:
Lab objectives
MATLAB codes
Results (graphs/tables) duly commented and discussed
Conclusion
Each of these functions takes a vector (or matrix) as its input argument and operates on each element of
the vector. Notice that the function names mag() and phase() do not exist in MATLAB.
jθ 2 jπ f 0 t
x (t )= Acos ( 2 π f o t+ ∅ ) =Real { A e e } (1)
Assuming that each sinusoid in the sum has the same frequency f0. This sum is difficult to simplify using
trigonometric identities, but it reduces to an algebraic sum of complex numbers when solved using
complex exponentials. If we represent each sinusoid with its complex amplitude
j∅
X k = Ak e k
(3)
Then the complex amplitude of the sum is
N
X s=∑ X k=¿ A s e j ∅ ¿ s
(4)
k=1
Based on this complex number manipulation, the Phasor Addition Rule implies that the amplitude and
phase of x(t) in equation (2) are As and ɸs, so
x (t )= A s cos ( 2 π f o t+∅ s ) (5)
We see that the sum signal x(t) in (2) and (5) is a single sinusoid that still has the same frequency, f0, and
it is periodic with period T0 = 1/f0.
fk = k f0 (HARMONIC FREQUENCIES),
This particular signal xh(t) has the property that it is also periodic with period T0 = 1/f0, because each of
the cosines in the sum repeats with period T 0. The frequency f0 is called the fundamental frequency, and
T0 is called the fundamental period.
Notice the word “function” in the first line. Also, “freeq” has not been defined before being used. Finally,
the function has “xx” as an output and hence “xx” should appear in the left-hand side of at least one
assignment line within the function body. The function name is not used to hold values produced in the
function.
N
x (t )=Real {∑ X k e j2 π f t } (7)
k
k=1
.
N
x (t )=∑ A k cos ( 2 π f k t+∅ k ) (8)
k=1
Measure the period of xx0 by hand. Then compare the period of xx0 to the periods of the three sinusoids
that make up xx0?
(b) From the plot of x(t) versus t, measure the frequency, phase and amplitude of the sinusoidal signal by
hand. Show annotations on the plots to indicate how these measurements were made and what the values
are.
(c) Use the phasor addition theorem and MATLAB to determine the magnitude and phase of x(t).