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.
2 views (last 30 days)
Show older comments
I am not able to find the answer for this as I am new to Matlab.
0 Comments
Answers (2)
KSSV
on 28 Jun 2022
x = rand+1i*rand ;
y = rand+1i*rand ;
p = x*y ;
iwant = atan(imag(p)/real(p))
0 Comments
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?
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!