Simplify the following complex expression.

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

2 个评论

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 .

请先登录,再进行评论。

回答(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) ;

类别

帮助中心File Exchange 中查找有关 Polar Plots 的更多信息

回答:

2020-12-18

Community Treasure Hunt

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

Start Hunting!

Translated by