Printing out a set of lists in the ti-84 ti-basic
I want to be able to print out L1 up to Lk (lists in the ti-84) for some arbitrary number k. Lists in ti-basic are essentially one-dimensional arrays used to store a real or complex number into each...
View ArticleRe: Printing out a set of lists in the ti-84 ti-basic
I know there has to be a way to iterate through a set of lists like I am trying because in the calculator there is such a notion of a '5th' string (if you click stat edit you'll see a number in the...
View ArticleRe: Printing out a set of lists in the ti-84 ti-basic
What you're trying to do is quite simple, really. Lists have an option that allows you to read any value of a list. However, it's not an actual token; you would use the parentheses. So, if...
View ArticleRe: Printing out a set of lists in the ti-84 ti-basic
I would probably use augment( to combine all the lists into one, then just run through each element. :P
View ArticleRe: Printing out a set of lists in the ti-84 ti-basic
Well, that has its pros and cons.
View ArticleRe: Printing out a set of lists in the ti-84 ti-basic
For a set of lists use a Matrix instead of multiple lists, where again each element gets specified by its own index. Matrix elements can be accessed by [Matrixname](Y,X)
View Article