[TIB] Re: ti-basic Digest V2 #97
[Prev][Next][Index][Thread]
[TIB] Re: ti-basic Digest V2 #97
Thanks but actually I am using the 92plus and the 83plus. I found out
last night. In case anyone wants to know its {var1,
var2,var3,ect.}->list1
Example
{1,2,3}->list1
list1=(1 2 3)
to put something in a certain place is var->list[place] so
4->list1[4]
now
list1=(1 2 3 4)
to extract a var its
list1[place]
so
list1[3]=3
-----Original Message-----
From: ti-basic-bounce@lists.ticalc.org
[mailto:ti-basic-bounce@lists.ticalc.org] On Behalf Of Joseph Brown
Sent: Tuesday, October 29, 2002 9:24 PM
To: ti-basic@lists.ticalc.org
Subject: [TIB] Re: ti-basic Digest V2 #97
If you're using a TI-83+, it's chapter 11 in the manual, also available
online.
1 -> L1(1) stores 1 into the first section of List 1
5 -> dim(L1 makes L1 five sections long
dim(L1 returns how long a list is
References: