346
General Calculator Help / Re: Ti84+SE misbehaving
« on: January 25, 2017, 10:08:12 am »
Which OS version? 2.53MP is known to be fairly buggy, 2.55MP is pretty stable in my experience, but I have gotten it to randomly crash before.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to. 346
General Calculator Help / Re: Ti84+SE misbehaving« on: January 25, 2017, 10:08:12 am »
Which OS version? 2.53MP is known to be fairly buggy, 2.55MP is pretty stable in my experience, but I have gotten it to randomly crash before.
347
The Axe Parser Project / Re: Need Help With Collision« on: January 18, 2017, 02:53:22 pm »
Have you tried swapping X and Y ? I haven't really dissected the code so this is a shot in the dark, but it's an issue I've frequently encountered.
348
TI-BASIC / Re: Fastest way to render random points and lines?« on: January 15, 2017, 09:27:27 am »
Of course assembly would be way faster, but have you tried the standard built in Pxl-On(, Pxl-Off(, Pxl-Change(, Pt-On(, Pt-Off(, Pt-Change(, Line(, and Circle( commands? Also, if you include an extra argument for Circle( of {i it will perform faster (i being the imaginary i).
If you haven't tried Axe yet, I urge you to try that if you want much faster graphics. Just be warned that Axe works a lot closer to assembly, so you can't just press [ON] to break out of infinite loops. For example, if you do While 1:End, you will need to pull a battery and get a RAM clear. Edit: Also, if you want a pixel based circle (instead of TIs point-based), I think KermM wrote an entirely TI-BASIC routine that performs faster than TIs. 349
News / Re: Reuben Quest: Lost Between Times« on: January 09, 2017, 09:03:48 pm »This is.....odd.TI-84+SE OS 2.55MP (shush, I use it for the extra built in functions ) I tried it at various points in the game including with water selected. It also crashes when I go to use magic, then press down. And occasionally if I die and hit [2nd] too quickly, it glitches to an odd map area and when I move it causes it to crash. 350
News / Re: Reuben Quest: Lost Between Times« on: January 01, 2017, 09:22:20 am »
I haven't played an awful lot, but it's fun so far!
I have one major bug to report, though: Whenever I press the down arrow when I'm charged for an attack, I get an error (Err:Link I believe) and it causes my calc to freeze and I have to pull a battery. 351
News / Re: Reuben Quest: Lost Between Times« on: December 19, 2016, 09:39:32 am »
Holy canoli, +1 for that, for sure! It looks sooo good! Gonna start playing when I boot up my pi to send to my calc!
I wonder if this will make it into next year's POTY then? I sure hope so 352
Other / Re: So Microsoft joins the Linux Foundation« on: November 20, 2016, 08:00:03 pm »https://en.wikipedia.org/wiki/Halloween_documentsWell, that's an interesting read. 353
TI-BASIC / Re: Help overcoming Symbolic bug« on: November 12, 2016, 07:07:13 am »
That's really clever! Is this bug only an issue when Batlib is installed? I'm worried that it might be a bug with Batlib or Batlib+Symbolic.
354
TI-BASIC / Re: Help overcoming Symbolic bug« on: November 07, 2016, 03:00:27 pm »
I'm not sure why that could even be an issue. I don't have symbolic or access to link software, so could you try this and see if it works :
Code: [Select] If 1=1:Then Also, for Batlib commands, of you have an argument of 0 before a string, you can omit it. For example:Code: [Select] As well, if the last few arguments are zero, you can omit them, too.
355
Math and Science / Re: Quadratic and Faster Convergence for Division« on: October 26, 2016, 11:23:42 am »
Oh, it's a common programming technique for performing ##\frac{x}{2^{n}(2^{k}\pm1)}##.
356
TI-BASIC / Re: Convert decimal to fraction as a string (TI-84)« on: October 26, 2016, 11:19:58 am »
I'm glad to hear it! Every so often, I take time to look at my code and try to come up with better ways of doing things. who knows, maybe in a few years there will be a Batlib 2
357
TI Z80 / Re: ICE - an interpreter/compiler of CE-BASIC« on: October 24, 2016, 08:06:27 pm »
Holy, crud, wow!
358
TI-BASIC / Re: Convert decimal to fraction as a string (TI-84)« on: October 24, 2016, 08:02:41 pm »
Well, I mean if your code is only working with rational numbers (a/b, with a,b integers and b>0), you can manually keep track of the numerators and denominators. For example, take two numbers, 3/7 and 15/11, and represent them as {3,7->L1:{15,11->L2.
Addition: {L1(1)L2(2)+L1(2)L2(1),L1(2)L2(2):Ans/gcd(abs(Ans(1)),abs(Ans(2 Subtraction: {L1(1)L2(2)-L1(2)L2(1),L1(2)L2(2):Ans/gcd(abs(Ans(1)),abs(Ans(2 Multiplication: {L1(1)L2(1),L1(2)L2(2):Ans/gcd(abs(Ans(1)),abs(Ans(2 Division: {L1(1)L2(2),L1(2)L2(1):Ans/gcd(abs(Ans(1)),abs(Ans(2 359
TI-BASIC / Re: Routh-Hurwitz Matlab to TI-Nspire« on: October 24, 2016, 05:59:53 pm »
For reference, the code linked:
Spoiler For "code": I'm not very familiar with matlab, so I hope this works. Here is the first part: Spoiler For "first part": Code: [Select] if a(i,:)==0 And the next chunk, translated:Spoiler For "next part": Spoiler For "???": 360
TI-BASIC / Re: Convert decimal to fraction as a string (TI-84)« on: October 24, 2016, 05:05:23 pm »
As @E37 said, it would require a parser hook, which is probably overkill. One question I have, though: For what purpose do you need this? Depending on the context, there could be elegant solutions available.
|
|