Re: Table
[Prev][Next][Index][Thread]
>In the TI-82, there's a TABLE function. Is there a similar function in
>the TI-85? I'm sick of using TRACE and EVAL everytime I need a table of
>values.
>
>Gary
>
>viper@catch22.com
I have a handy program for the TI-85 that is similar to the Table function
on the TI-82. Enter the function of interest under y1= in the "Graph" menu.
Program:TABLE
:Fix 3
:Disp "Table Setup"
:Input "TblMin=",tblmin
:Input "dTbl=",dtbl
:tblmin>x
:Lbl CONTD
:ClLCD
:Outpt(1,1,"x"
:Outpt(1,8,"y1"
:For(cnt,2,7,1
:Outpt(cnt,1,x
:Outpt(cnt,8,y1
:x+dtbl>x
:End
:Menu(1,"PageD",CONTD,2,"PageU",CONTU,5,"quit",TQUIT
:Lbl CONTU
:x-12dtbl>x
:Goto CONTD
:Lbl TQUIT
:ClLCD
:Float
Note: For this program to run correctly, all of the instances of
">" will need to be
replaced with the store arrow.
References: