TI-Basic Z80 Programming/Advanced Variables

From testwiki
Jump to navigation Jump to search

The calculator can work with variables of other types in programs. Here, we show some examples of manipulating and accessing all other types of variables from a program. It is assumed you understand basic operation of the variable types.

Complex

Complex numbers on the calculator use the same variables as Real numbers. So, the A variable can hold both 3.14 and 3i+2, but not at the same time. Essentially, you do not have to use different types of variables for real and complex numbers.

Matrices

Matrices store data in two dimensions, much like a table. To instantiate a matrix: Template:Bcode:Example

To get and set a value in the matrix: Template:Bcode:Example

Examples

4x4 Multiplication Table

Template:Bcode:Example

Hadamard Product

The Hadamard product for two matrices of equal dimension is (in this example 3x3 matrices):

[a11a12a13a21a22a23a31a32a33][b11b12b13b21b22b23b31b32b33]=[a11b11a12b12a13b13a21b21a22b22a23b23a31b31a32b32a33b33]

This code performs the Hadamard product of Matrix A and B and stores it into Matrix C: Template:Bcode:Example

Y-Vars

The Y-Vars are special strings that hold the expressions used in graphing. They operate just like normal strings, but are used when graphing and are parsed as expressions. Entering a string into a Y-Var will allow it to be graphed on the screen. Use the letter X to denote the variable, just like you would when entering an equation into the Y= screen.

Examples

Simple Graph

Template:Bcode:Example

Pics

Pics store a snapshot of the graph screen, including all the drawings made to the graph screen. Pics do not store the equations that make up the drawing, but rather just the pixels that are colored.

To store and recall Pics means to write and read pics, respectively: Template:Bcode:Syntax

Graph Databases

Graph Databases (GBD) are used for storing the current graphing information. It includes:

  • The current graphing mode (one of FUNC, PAR, POL, or SEQ)
  • All graphing equations in the current mode
  • Window variables excluding zoom and table settings
  • Graph formatting

To store and recall GBDs: Template:Bcode:Syntax Template:BottomNav