Re: TIB: Ti-89 Stuff ( looking for volenteers/ help)


[Prev][Next][Index][Thread]

Re: TIB: Ti-89 Stuff ( looking for volenteers/ help)




You are very close.  On the 89, lists are done a little differently though.

To create a list:
{1,2,3,4,5}->varname
Output:
{1,2,3,4,5}

To view the contents of a cell:
varname[3]
Output:
3

-Miles Raymond      EML: m_rayman@bigfoot.com
ICQ: 13217756       IRC: Killer2        AIM: MRayMan
http://www.bigfoot.com/~m_rayman/

-----Original Message-----
From: Bigskank9@aol.com <Bigskank9@aol.com>
To: ti-basic@lists.ticalc.org <ti-basic@lists.ticalc.org>
Date: Monday, March 22, 1999 4:18 PM
Subject: Re: TIB: Ti-89 Stuff ( looking for volenteers/ help)


>In a message dated 3/22/99 2:11:55 PM Pacific Standard Time,
>cassetti@yahoo.com writes:
>
><< HERE IS AN EXAMPLE LIST [1,2,3,4,5]->x
> * how would i add 5 to the number "3" in the list?? >>
>x(3)=5->x(3)
>thats how you do it on the 86
>it should be about the same syntax
>
><< * How would i handle conditions: EX;
> If (how do i say the area where number "3" is)=.... Then >>
>
>If x(3)=15
>Then do stuff if the third element in the list is 15
>
><< * or storeing the number in one area of the list
> to a variable. >>
>x(2)->VAR
>stores the second element in the list to VAR