0 Members and 6 Guests are viewing this topic.
From what I read on the nspire teachers site, 3.2 has caused new bugs which is not good news.
Quote From what I read on the nspire teachers site, 3.2 has caused new bugs which is not good news.It did, indeed. But did anyone seriously expect better from TI, despite the delay of three months ?
Quote from: ElementCoder on June 10, 2012, 07:48:14 amHas anyone else noticed the dramatic decrease in speed in the notes app and TI-BASIC (and probable some other places too)? It's unbearable. Loops, for example, are very slow with printing results to the screen, really annoying since I was developing something that does that a lot. I read that the slowness in the notes app is caused by bad XML, it's a tree with a leaf for every word (and a word has a lot of params). I think I'll return to OS 3.1 again for now...This loop finished in +/- 20 sec on OS 3.1 and in approx 2 min. ( ) on OS 3.2Code: [Select]Local iFor i,1,100Disp i," ",(i^2)-1EndForgrilled : https://groups.google.com/forum/?fromgroups#!topic/tinspire/_mB8zLLoCLg
Has anyone else noticed the dramatic decrease in speed in the notes app and TI-BASIC (and probable some other places too)? It's unbearable. Loops, for example, are very slow with printing results to the screen, really annoying since I was developing something that does that a lot. I read that the slowness in the notes app is caused by bad XML, it's a tree with a leaf for every word (and a word has a lot of params). I think I'll return to OS 3.1 again for now...This loop finished in +/- 20 sec on OS 3.1 and in approx 2 min. ( ) on OS 3.2Code: [Select]Local iFor i,1,100Disp i," ",(i^2)-1EndFor
Local iFor i,1,100Disp i," ",(i^2)-1EndFor
I said I read it somewhere. I'm not claiming I discovered it, I read it, ran the example on my calc and decided to post it, and then forgot where I read it. So if it seems like I claim it as my discovery, sorry for that , I was just pointing to it.
It is the Disp function that is the problem. How more arguments how slower. TI is aware of the issue and looking into it.