Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

with the MATLAB code the following operations. And obtain the Polar and Rectangu

ID: 2268022 • Letter: W

Question

with the MATLAB code

the following operations. And obtain the Polar and Rectangular form for each of your answers a. S1 + S2 +S3 b. (S S2) S3 d. S1 S2/(S1 +S2) ( Hint: Rec: S1 = 1 +jan and Pol: S2 = reje,and = rcos(9)and a) = rsin(9); = tan-1 (

Explanation / Answer

>> S1 + S2 + S3 %rectangular form ans = 27.351 - 14.028i >> Sa_mag = abs(S1+S2+S3); >> Sa_phase = angle(S1+S2+S3)*180/pi; %converting radians to degrees and angle function gives phase angle >> Sa_mag Sa_mag = 30.738 >> Sa_phase Sa_phase = -27.153 >> (S1*S2)*S3 ans = 613.84 - 665.73i >> Sb_mag = abs((S1*S2)*S3); >> Sb_phase = angle((S1*S2)*S3)*180/pi; >> Sb_mag Sb_mag = 905.54 >> Sb_phase Sb_phase = -47.322 >> S3/S2 ans = 0.59682 - 4.37893i >> Sc_mag = abs(S3/S2) Sc_mag = 4.4194 >> Sc_phase = angle(S3/S2)*180/pi Sc_phase = -82.239 >> S1 * S2/(S1+S2) ans = 6.13279 - 0.24816i >> Sd_mag = abs(S1 * S2/(S1+S2)) Sd_mag = 6.1378 >> Sd_phase = angle(S1 * S2/(S1+S2))*180/pi Sd_phase = -2.3172