-3 + 5j in polar form
Show older comments
-3 + 5j in polar form?
1 Comment
Adam
on 4 Dec 2015
What about it? Are you trying to do it in Matlab?
Answers (1)
James Tursa
on 4 Dec 2015
You could use the following:
Z = -3 + 5j;
R = abs(Z);
theta = angle(Z);
Or you could use cart2pol using real(Z) and imag(Z) as the inputs.
doc cart2pol
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!