Post Reply 
Programming in hp prime
10-29-2019, 10:17 PM
Post: #3
RE: Programming in hp prime
You should also consider creating your own drawing function (in a standard, not CAS program) using Xmin, Xmax, RECT(), PIXON(), WAIT() ...

Code:

EXPORT MYGRAPH2()
BEGIN
 Xmin:=-8; Xmax:=8;
 Ymin:=-2; Ymax:=2;
 RECT(); // clear screen
 FOR X FROM -8 TO 8 STEP .1 DO
  PIXON(X, SIN(X));
 END;
 WAIT;
END;

Or your program could define one of F1 .. F9 functions, switch to Function app with STARTAPP() and plot view with STARTVIEW() then let the user and the system plot the func and manipulate it.

Programming the Prime is funny and full of options!
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Programming in hp prime - losipi - 10-29-2019, 05:25 PM
RE: Programming in hp prime - pinkman - 10-29-2019, 09:44 PM
RE: Programming in hp prime - pinkman - 10-29-2019 10:17 PM



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