Today I saw that the new TI Connect CE was available so I tried it out. I was pleased to see the program editor -- clean and simple. (No more running TI-GraphLink in a virtual machine. ) But I already came across a bug in the editor.
If you try to use the statistics variable F (not normal real number variable F), the calculator will display "Syntax Error". In the calculator editor, it looks correct, but it isn't. (You have to run 2-SampFTest first, otherwise the variable is undefined.)
Here's a 2 line program that illustrates the problem. In TokenIDE and SourceCoder, the correct code looks like this:
Code:
but the code generated by the TI Connect CE editor opens up in TokenIDE and SourceCoder as
Code:
Notice the missing brackets around |F. It appears to be using the character instead of the token, which makes it look right in the calculator's program editor.
Even if you just open the working file and resave it without making any changes, the TI Connect CE editor inserts the incorrect token.
Anybody notice any other token issues?
-wes
If you try to use the statistics variable F (not normal real number variable F), the calculator will display "Syntax Error". In the calculator editor, it looks correct, but it isn't. (You have to run 2-SampFTest first, otherwise the variable is undefined.)
Here's a 2 line program that illustrates the problem. In TokenIDE and SourceCoder, the correct code looks like this:
Code:
2-SampFTest 10,20,30,40,0
[|F]
but the code generated by the TI Connect CE editor opens up in TokenIDE and SourceCoder as
Code:
2-SampFTest 10,20,30,40,0
|F
Notice the missing brackets around |F. It appears to be using the character instead of the token, which makes it look right in the calculator's program editor.
Even if you just open the working file and resave it without making any changes, the TI Connect CE editor inserts the incorrect token.
Anybody notice any other token issues?
-wes