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 Ansicht (letzte 30 Tage)
I am not able to find the answer for this as I am new to Matlab.

Antworten (2)

KSSV
KSSV am 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 am 28 Jun. 2022
Bearbeitet: KSSV am 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!

Translated by