HP 39gii Tutorials Parts 1 and 2 up
|
|
« Next Oldest | Next Newest »
|
▼
Post: #5
03-09-2013, 01:41 PM
▼
Post: #6
03-10-2013, 04:49 AM
Well done ! About PRINT command, as far I know it is not explain in the user guide, but you can use PRINT without any parameter to clear the screen. There is no CLS or CLEAR command, PRINT do the job Another trick not explain is that you can easily create new global variables with just the syntax (in a program): EXPORT NewGlobal ; For example EXPORT L10:={}; create a new global list in addition of the existing L0..L9 There is no need of 'string' command in such things as :
EXPORT AREA1()
PRINT("THE AREA IS " + Pi*R² + ".");
To evaluate in expresion in a string, the command is expr I also notice that the 39GII knows some physics contants (Math - PHYS ) but I don't know if wecan use them in program. It would simplify your program KEPLER (with a powerfull unit management in addition)
Edited: 10 Mar 2013, 5:19 a.m. ▼
Post: #7
03-11-2013, 08:22 AM
Quote: Thanks! I note that string is not necessary. However, what if the expression has addition in it (a+b for example)? Staying on the safe side - I think. Units in programs would help - not sure if I can use them. I was not able to use units in the Solver app.
|