|
We're glad you came by, but you might find what you're looking for elsewhere. TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it. Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope. |
Returns the angle of expression, interpreting expression as a complex number.
angle(expression)
Menu Location
- Press 2nd MATH to enter the MATH popup menu.
- Press 5 to enter the Complex submenu.
- Press 4 to select angle(
This command works on all calculators.
X byte(s)
The angle() command returns the angle of a complex number. The argument may be an expression, a list, or a matrix. In the case of a lists and matrices, each element is evaluated individually and the result is outputted to the corresponding element of a matrix or list of the same dimensions as the original.
:angle(2i)
pi/2
:angle({2i,3+i})
{pi/2 tan^-1(1/3)}
:angle([[2i,3+i][i+7,2i]])
[pi/2 tan^-1(1/3)]
[tan^-1(1/7) pi/2]