Omnimaga

Calculator Community => TI Calculators => TI-BASIC => Topic started by: Yeong on December 14, 2011, 12:52:57 pm

Title: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 14, 2011, 12:52:57 pm
I think we need this thread at some point :)

I'll post some first! :D

1. 2(X-1)→X to 2(X-1→X to 2X-2→X if numbers are small enough.

2. X*100→X to XE2→X

3. (X-3)/5→X to 5-1(X-3→X

4. If X=1:0→X:Goto A:If X=0:1→X:Goto A (I see this a lot) to abs(X-1→X:Goto A to not(X→X:Goto A

5. Disp "A":Disp X:Disp "B" to Disp "A",X,"B
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Xeda112358 on December 14, 2011, 12:57:22 pm
4. If X=1:0→X:If X=0:1→X (I see this a lot) to abs(X-1→X
Also known as not(X→X :P
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 14, 2011, 12:58:07 pm
4. If X=1:0→X:If X=0:1→X (I see this a lot) to abs(X-1→X
Also known as not(X→X :P
:P I just realized and tried to fix it but you noticed it first anyway XD
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: harold on December 14, 2011, 01:08:52 pm
1. Disp X   to X  (only as the last command in a program, and messes up Ans)
2. seq(2^X,X,1,8 to 2^cumSum(binomcdf(7,0
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 14, 2011, 01:12:14 pm
8. 3+X→Y:Disp Y to Disp 3+X (Unless you want to call up the Ans later :P )
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Juju on December 14, 2011, 01:36:51 pm
4. If X=1:0→X:If X=0:1→X (I see this a lot) to abs(X-1→X
Also known as not(X→X :P
:P I just realized and tried to fix it but you noticed it first anyway XD
I think you forgot an Else before the second If there.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 14, 2011, 02:59:36 pm
You don't need the Else there. ;)
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Deep Toaster on December 14, 2011, 08:02:13 pm
X/100 to sub(X is a very useful one.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 29, 2011, 12:54:16 pm
I see many people using this getKey routine:
0→K
While K=0
getKey→K
End

It could be optimized to this:
Repeat K:getKey→K:End

EDIT: Here's jacobly's way if you're interested:
0:Repeat Ans:getKey:End
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Deep Toaster on December 29, 2011, 01:47:29 pm
You can take out the 0 and just use Repeat Ans:getKey:End because getKey returns 0 if no key was pressed.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Builderboy on December 29, 2011, 02:34:19 pm
X/100 to sub(X is a very useful one.

Might as well do .1X since sub() is a 2 byte token :P
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Sorunome on December 29, 2011, 02:41:44 pm
Code: [Select]
:Disp "Blah"
:Disp "More Blah"
optimized:
Code: [Select]
:Disp "Blah","More Blah
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Deep Toaster on December 29, 2011, 06:03:23 pm
X/100 to sub(X is a very useful one.
Might as well do .1X since sub() is a 2 byte token :P
That divides by ten, not 100.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 29, 2011, 06:37:43 pm
Code: [Select]
:Disp "Blah"
:Disp "More Blah"
optimized:
Code: [Select]
:Disp "Blah","More Blah
Don't
Code: [Select]
:Disp "Blah
:Disp "More Blah
takes less space?
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: ZippyDee on December 29, 2011, 06:40:15 pm
You don't need the Else there. ;)
yes you do.... otherwise no matter what X would be 1 by the end.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 29, 2011, 06:41:37 pm
You don't need the Else there. ;)
yes you do.... otherwise no matter what X would be 1 by the end.
Oh. I see your point there. :P
Gotta fix it XP
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: ZippyDee on December 29, 2011, 06:43:04 pm
Code: [Select]
:Disp "Blah"
:Disp "More Blah"
optimized:
Code: [Select]
:Disp "Blah","More Blah
Don't
Code: [Select]
:Disp "Blah
:Disp "More Blah
takes less space?

No, it takes the same amount of space. You still have a line return there.
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 29, 2011, 06:45:50 pm
Fine then.
Code: [Select]
:Disp "BLAH
:Disp "MORE BLAH

Optimized 9 bytes :P
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Builderboy on December 29, 2011, 06:47:21 pm
X/100 to sub(X is a very useful one.
Might as well do .1X since sub() is a 2 byte token :P
That divides by ten, not 100.
Oh right! XD Didn't see that there
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Nick on December 29, 2011, 07:05:05 pm
Code: [Select]
input A
if A=5
goto AA
if A!=5 (!= has to be the not equal to sign)
goto BB
lbl AA
disp A
lbl BB
output(5,5,A
to
Code: [Select]
input A
if A=5
goto AA
output(5,5,A
lbl AA
disp A
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: Yeong on December 29, 2011, 07:07:30 pm
Code: [Select]
input A
if A!=5
Output(5,5,A
Disp A
Title: Re: 100 TI-BASIC Optimizing Tips
Post by: chattahippie on December 29, 2011, 09:31:14 pm
Code: [Select]
If (A=1)+(A=2)+(A=3)+(A=4)to
Code: [Select]
If sum(A={1,2,3,4