If I do this conversion to polar form
input: num = polar(3+I*3)
returns: num = polar(3sqrt(2),1/4*pi)
How can I select the 1/4*pi part of the return value?
I believe it should be possible to select num[1] or similar, but I am unsure.
If I do this conversion to polar form
input: num = polar(3+I*3)
returns: num = polar(3sqrt(2),1/4*pi)
How can I select the 1/4*pi part of the return value?
I believe it should be possible to select num[1] or similar, but I am unsure.
Given that
numis a function call to polar, then its second operand is the argument.Note that you don't necessarily need to get to polar form before being able to access the argument of the complex numeric value.