Q:

) Create the following complex variables c1 = 2 -4i; c2 = 5+3i; Perform the following operations on them:  add them  multiply them  get the complex conjugate and magnitude of each  put them in polar form

0

) Create the following complex variables

c1 = 2 -4i;

c2 = 5+3i;

Perform the following operations on them:

 add them

 multiply them

 get the complex conjugate and magnitude of each

 put them in polar form

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Ch14Ex23.m

% Create complex variables and perform 

% several operations

c1 = 2-4*i;

c2 = 5+3*i;

%Sum

c1+c2

%Product

c1*c2

%Complex conjugates

conj(c1)

conj(c2)

%Magnitude

abs(c1)

abs(c2)

%Polar form

r = abs(c1)

theta = angle(c1)

r = abs(c2)

theta = angle(c1)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now