Simplify the following complex expression.
显示 更早的评论
a = 3e-jπ/3+ 4ejπ/6
b = (1+j) +j * 2ejπ/6
2 个评论
James Tursa
2020-12-18
编辑:James Tursa
2020-12-18
Simplify in what way? Group the real and imaginary parts? Is e a variable? Seems like you could easily do this by hand.
Pervez chaudhry
2020-12-18
回答(1 个)
KSSV
2020-12-18
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 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!