Have you ever wanted to use the lowercase characters as variables? You can.
I was talking to omnimaga, and even a BASIC expert like him didn't know about it
So he said I should mention it here since probably very few people know about it.
Here is how:
{0,1->L1
{B,A+B->L2
LinReg(ax+b)You have now stored the values of uppercase "A" into lowercase "a" and Uppercase "B" into lowercase "b" (You can use anything for the number). At this point you can do math with them as if they were any other variable. However, they are read only. You can only write to them by using the statistics functions.
You can do things like this:
a->C
sin(a)+cos(b)->C
if (a=1)You just can't write to them. These won't work:
C->a
For(a,1,5)These can be useful if you have a variable that is usually read only for most of the program but is used constantly. Its better than using a list to store extra variables because these letters are 2 byte tokens which is less than the 4 bytes to type
L1(9) or 5 bytes for
L1(10)You don't have to use a list to store extra variables:
L1(1)(L1(2)-2->DJust use this:
a(b-2->DYou can write to the other stat vars as well like c,d,e,r,p,z,t,etc... but you will have to find a statistics operation that will write your value to that variable.