a single line of code that will take complex variables x and y and define a variable z as the phase of the product of x and y.

1 view (last 30 days)
I am not able to find the answer for this as I am new to Matlab.

Answers (2)

KSSV
KSSV on 28 Jun 2022
x = rand+1i*rand ;
y = rand+1i*rand ;
p = x*y ;
iwant = atan(imag(p)/real(p))
iwant = -1.3234

Walter Roberson
Walter Roberson on 28 Jun 2022
Edited: KSSV on 28 Jun 2022
but does the angle need to be in degrees or radians? And what range?

Community Treasure Hunt

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

Start Hunting!