argument
complex argument function
Calling Sequence
Parameters
Description
Examples
argument(z)
z
-
algebraic expression
The argument function returns the principal value of the argument of the complex-valued expression z. This means that argument(z) = t specifies z = polar⁡z,t=z⁢ⅇI⁢t where −π<t≤π.
From the previous definition, for an arbitrary complex number z=x+I⁢y, argument⁡z>0 if y>0. If y<0, then argument⁡z<0.
For the case y=0, if y is the special floating-point value −0., argument returns a floating-point approximation to -Pi. For the case where y=0 but y is not equal to the special floating-point value −0., argument⁡z=0 if x≥0 and otherwise argument⁡z=π.
For more information about the special floating-point value −0., see Numeric Computation in Maple.
argument⁡abs⁡z⁢exp⁡I⋅2⁢π3
2⁢π3
argument⁡polar⁡2,π7
π7
Consider the following examples.
For ℑ⁡z<0, argument(z) is always negative.
argument⁡12.−13⁢I
−0.5880026035
argument⁡−12.−13⁢I
−2.553590050
For 0<ℑ⁡z, argument(z) is always positive.
argument⁡12.+13⁢I
0.5880026035
argument⁡−12.+13⁢I
2.553590050
For ℑ⁡z=0, argument(z) is zero or π.
argument⁡12
0
argument⁡−12
π
For exact numbers and in other situations, argument returns an expression using arctan.
argument⁡3+4⁢I
arctan⁡43
See Also
arctan
evalc
initialfunctions
parameter
polar
Re
signum
Download Help Document