Simplify the following complex expression.

a = 3e-jπ/3+ 4ejπ/6
b = (1+j) +j * 2ejπ/6

2 Comments

James Tursa
James Tursa on 18 Dec 2020
Edited: James Tursa on 18 Dec 2020
Simplify in what way? Group the real and imaginary parts? Is e a variable? Seems like you could easily do this by hand.
Simplify the following complex expression. Give answer in both rectangular and polar forms..
I am new to matlab . can you please help me how to write this equation in matlab. Thankyou .

Sign in to comment.

Answers (1)

There are inbuilt functions available. Read about real, imag, cart2pol, pol2cart.
a = 3*e-j*pi/3+ 4*e*j*pi/6 ;
b = (1+j) +j * 2*e*j*pi/6 ;
% Cartesian form
ac = [real(a) imag(a)] ;
bc = [real(b) imag(b)] ;
% Polar form
ap = cart2pol(ac) ;
bp = cart2pol(bc) ;

Categories

Asked:

on 18 Dec 2020

Answered:

on 18 Dec 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!