Post Reply 
User defined touch-button menu (Softkeys)
06-30-2019, 09:07 PM
Post: #22
RE: User defined touch-button menu (Softkeys)
(06-30-2019 02:48 PM)Gene222 Wrote:  3. How you use and program the HP Prime is entirely up to you. But if I were writing that program, I would not use "User Tabs" or "program tabs", particularly if I just got the Prime. They are just too difficult to program.

To illustrate this point, if you take all the "user tab" code out of your program, you would be left with the program below. I move the LOCAL statement to the top of the page, only because that is the area where I normally put the LOCAL statement.

Code:
LOCAL a,b,z,i_Wert;

EXPORT i_SB2()
BEGIN
  INPUT({a,b,z});
  i_Wert:=(1/(2*π))*(ATAN((a*b)/(z*√(a^2+b^2+z^2)))+(a*b*z)/(√(a^2+b^2+z^2))*(1/(a^2+z^2)+1/(b^2+z^2)));
  RETURN i_Wert;
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: User defined touch-button menu (Softkeys) - Gene222 - 06-30-2019 09:07 PM



User(s) browsing this thread: 1 Guest(s)