roxrook
roxrook

Reputation: 13853

How to create an array in TI-89 Titanium calculator?

I tried many different ways, but TI always gives me errors:

Invalid in a function or current experession

I tried

{0, 0, 0, 0}->A

and

[0, 0, 0, 0]->A

Both ways did not work. Any idea?

Upvotes: 0

Views: 2223

Answers (1)

roxrook
roxrook

Reputation: 13853

I finally got it solved:

Local lst
newList( n )->lst

We have to explicitly declare lst as local variable, and create a new list of n element with newList() function.

Upvotes: 3

Related Questions