AdMathLab1
AdMathLab1
:
Course : Date :
Discussion: A complex number is of the form z = x + jy, where x and y are real
numbers. The x is the real part and jy is the imaginary part. The conjugate of z = x + jy
is the complex number z* = x – jy. The j operator operates in counterclockwise (ccw)
direction by 90o with respect to the reference axis with changing the magnitude. There
are four different forms of complex numbers namely: rectangular/Cartesian form, polar
Instructions: Perform the following accordingly, then answer the questions that follow.
Place your answers on the space provided. Place the result of the following MATLAB
instructions on the space provided.
MATLAB Session
1. In MATLAB®, i and j represent the basic imaginary unit. You can use them to
create complex numbers such as 2i+5. You can also determine the real and
imaginary parts of complex numbers and compute other common values such as
phase and angle.
4. Another way to create a complex number is using the complex function. This
function combines two numeric inputs into a complex output, making the first input
real and the second imaginary:
>> x = rand(3) * 5;
>> y = rand(3) * -8;
>> z = complex(x, y)
5. You can separate a complex number into its real and imaginary parts using
the real and imag functions:
>> zr = real(z)
>> zi = imag(z)
a.
b.
c.
d.
e.
a.
b.
c.
d.
e.
f.
a. (3 + j5) + (2 – j2)
b. (12 – j2) – (3 + j5)
c. (3∠25) * (2∠45)
d. (12∠27) / (4∠20)
e. (3 + j5) * (2 – j2)
f. [(3 + j5) * (3∠25) + (2 – j2)] / [(2∠45) - (4∠20) + (12 – j2)]