|
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. |
Formats a complex value in polar form when displaying it.
value►Polar
Press:
- MATH to access the math menu.
- RIGHT RIGHT to access the CPX submenu.
- 7 to select ►Polar, or use arrows and ENTER.
TI-83/84/+/SE
2 bytes
The ►Polar command can be used when displaying a complex number on the home screen, or with the Disp and Pause commands. It will then format the number as though re^θi mode were enabled. It also works with lists.
i
i
i►Polar
1e^(1.570796327i)
{1,i}►Polar
{1 1e^(1.570796327i)}It will also work when displaying a number by putting it on the last line of a program by itself. It does not work with Output(, Text(, or any other more complicated display commands.
To actually separate a number into the components of polar form, use abs( and angle(.
Error Conditions
- ERR:SYNTAX is thrown if the command is used somewhere other than the allowed display commands.
- ERR:DATA TYPE is thrown if the value is real.
Related Commands
.