Show Posts

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.


Messages - timwessman

Pages: 1 2 [3] 4 5 ... 7
31
Note the correct way to do this is replace the append line with lst(0):=4; which works fine.

32
The reason why is append is a CAS command and the CAS can't access local/temp variables since it has no way to get at the object.

33
HP Calculators / Re: Is 1▶a instead of a := 1 bad practice? (HP Prime)
« on: January 16, 2014, 10:51:27 am »
There is no difference internally between the two STO commands. They just allow you to do stuff in a slightly different way if preferred. The STO> operator is nice to store into variables during calculations though since very often you don't realize you want to save something till near the end of the line. :-)

34
HP Prime / Re: Spaceinvader game
« on: January 04, 2014, 07:09:02 pm »
How many fps do you want it to update at?

35
HP Prime / Re: Spaceinvader game
« on: January 04, 2014, 04:43:09 pm »
By the way, don't you hate the low framerate in the emulator?

Well, that was news to me that it was problematic... will put that on the list of things to adjust.

36
Other Calculators / Re: TI CAS question: System of linear ODE solving?
« on: December 31, 2013, 04:31:52 pm »
Thanks.

Looking through those, it seems like you can manually solve them but there is no single step solution to solve a system with a single desolve for example.

37
Other Calculators / TI CAS question: System of linear ODE solving?
« on: December 31, 2013, 11:37:42 am »
Not sure if this is the correct place to post this question. I am trying to figure out if any of the TI CAS calcs (nspire, 89 etc) have the ability to solve *system* of 1st order linear ODEs natively.

Here's a link (http://www.wolframalpha.com/input/?i=y%27%3Dy%2Bz%2Cz%27%3Dy-z%2C+y%280%29%3D3%2Cz%280%29%3D%E2%88%9A%282%29-3) of an example. Thanks.

38
Miscellaneous / Re: Christmas 2013 - What did you get?
« on: December 26, 2013, 01:04:11 pm »
A baby. Had to pay for it myself though...




39
HP Calculators / Re: A clock
« on: December 21, 2013, 10:50:28 am »
Also, I'd recommend using something like this at the end. It will save a lot of juice since you won't be looping continually. Also will exit cleanly on any keypress.

  WAIT(1);
  UNTIL GETKEY()≠−1;




40
HP Calculators / Re: A clock
« on: December 21, 2013, 10:26:55 am »
I'm guessing the runtime issue is that you need to be setting to radians, and restoring after.

local angle:=HAngle;

....
program body
....

HAngle:=angle;


Also, I've figured out what is going wrong here. Looks like some browsers are sticking in unicode nbsp (\u0090) in these types of blocks. I'll put that on the list of changes to handle as part of the "whitespace" skipping code. Thanks!


41
News / Re: Add 3.1/Ndless compatibility to your TI-Nspire CX HW-J/K
« on: December 13, 2013, 01:41:38 pm »
because the HP Prime already does it to a certain extent (there are still screws, but it's incredibly hard to unclip the two parts afterward without bending the circuit board)

You know, I take small issue with that. There are 6 screws. Then all you do is run your fingernail (or a plastic wedge tool) around the outside and it pops right open. Sure, the first time you do it it might be a little tricky since it is a totally new device, but it is honestly the easiest calculator to open I've ever tried (and I've opened more then my fair share).

42
HP Calculators / Re: HP PPL Fade in/out effects
« on: December 12, 2013, 06:48:10 pm »
Yes, it will be smaller. Might be faster too. There is only a single copy of the PNG referenced.

I have no clue what it does with transparency though now that I think about it...

43
HP Calculators / Re: HP PPL Fade in/out effects
« on: December 12, 2013, 11:59:04 am »
One other thing, you might want to take a look at the program I've attached.

Note, the "ICON" keyword will most likely be changing, as will the encoded data. One thing I am thinking about is to create a "resource" area that would contain binary data, not show up in the editor on calc (a list of names only, and ability to change the names), and could be called by name within a program. The intent would be that large objects (graphics, strings, etc) that don't really ever get edited would be storeable alongside the program file for use.

Anyway, you can now load PNG data directly as of the last update. And the little helper program is attached. Note that neither this one nor the first was made by me, but rather by cyrille (one of my coworkers). It is not endorsed or supported in any way by HP, but is given out as a help for interested parties.

The program I've stuck up here for download randomly plasters that png data across the screen as shown below.




44
Miscellaneous / Re: Willrandship's upcoming 2 Year Absence
« on: December 10, 2013, 02:34:52 pm »
Well, I went to Honduras SPS from Nov 2001-2003 and had a great time. Got back just after the 49g+ came out.

Have fun!


45
HP Calculators / Re: Hp Prime Questions and Help
« on: December 05, 2013, 01:00:20 am »
Yup, it is definitely a micro USB. Pretty much any phone/tablet charger you might have will work just fine.

What is probably messing you up is that it is a micro-A. In other words, it can also act as a host. The normal cable you are thinking about is the micro-B. A micro B cable can go into a micro-A, as can also the host end of a micro AB cable. Here's a picture and some more info http://en.wikipedia.org/wiki/Micro_USB#Mini_and_Micro_connectors.

I believe unless I am remembering wrong that the nspire uses a mini-A on the calculator, so a similar thing would happen if you compared those with the common (now deprecated) mini-B.

Got one question please, I don't see how to programmatically set angle unit to degrees. Thank you !

HAngle:=1 or HAngle:=0   (home angle)  Take a look in your VARS->HOME->SETTINGS for others.

Pages: 1 2 [3] 4 5 ... 7