RPNplus - Good RPN-calculator for Android
|
05-18-2016, 06:22 AM
(This post was last modified: 05-18-2016 06:32 AM by deetee.)
Post: #1
|
|||
|
|||
RPNplus - Good RPN-calculator for Android
Hi all!
I would like to recommend RPNplus - a HP-like scientific RPN-calculator for Android smartphones. RPNplus was initially made for internal use in a company but then offered for free in the playstore. So it's completely ad-free and optimized for Android smartphones in portrait mode (720 x 1280 pixels). To make handling easy RPNplus has (only) 27 big, easy-readable and vibration-supported keys and a big display. Just give it a try - until WP34s for Android will be released ;-) https://play.google.com/store/apps/detai...spro&hl=de Regards deetee |
|||
05-18-2016, 08:48 AM
Post: #2
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
The WP34S for android will be released once someone volunteers to (& does) port the code to same.
Pauli |
|||
05-18-2016, 07:23 PM
Post: #3
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
I've been very happy with Free42. It was my HP 'trainer' for the kids. Open source simulator (no HP ROMs used). I've been very happy with it, and it looks to have been under active development for 12 years.
(Admins: is external linking OK?) MyCalcs: Physical: {hp48gx, hp50g, hp35s} Emu: {hp42s(Free42), hp41c(v41)} Blog: https://brianddk.github.io/ |
|||
05-28-2016, 11:24 AM
Post: #4
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi all!
Free42 is really great - I like the high precision and the possibility to use skins. But the main advantage of RPNplus is that it is convenient (due to less keys and a big display) for people that are "farsighted due to old age" - like me. I recognized that RPNplus found 8 new friends (from this forum?) last week, which lowers our "programming effort per user" - what makes us happy :-) Regards deetee |
|||
05-28-2016, 06:54 PM
Post: #5
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
(05-28-2016 11:24 AM)deetee Wrote: I recognized that RPNplus found 8 new friends (from this forum?) last week, which lowers our "programming effort per user" - what makes us happy :-) Sounds like you are (one of) the developer(s)? Very nice calc. app, auto-orientation, and quite easy to read. It seems to have quite a few digits of precision: [FSE] (pick SCI), [shift] [TAB] 12 (to display 12 decimal digits in Scientific notation) 2 [Enter] 3 [divide] 0.66666666666 - => 6.66666666667 E-012 How many digits are actually available, and is this level of precision implemented for all math functions? --Bob Prosperi |
|||
06-07-2016, 09:17 AM
Post: #6
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hello Bob,
thanks for your nice comment. I was a developer of RPNplus. It fits our requirements perfectly - so our project was closed - RPNplus is actually not under development. The calculating precision was given by the Android Development Kit (real number - which was used for all math functions). As our primary goal was a big display (which supports 10 digits only) the calculating precision was more than sufficient (especially if you use the traditional FIX4 format). Regards deetee |
|||
06-23-2016, 04:51 AM
Post: #7
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi Deetee,
I don't understand - after a quick look - how does the stack operate compared to real HP one. It seems to have three levels or the x "display" register is not taken into account. I didn't investigate much more but could you explain the difference ? BR |
|||
06-30-2016, 09:15 AM
Post: #8
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi parse!
"Good eye" - the stack of RPNplus works really slightly different to HP-calculators ... but (let's say) that's not less efficient. On RPNplus (and ie HP48gx) pressing ENTER pushes the stack and copies the entry to the x register (inserted value is in register x only). On many HP-calculators (I own 15c, 35s, WP34s) ENTER copies the entry to the x register and pushes the stack (inserted value is in register x and y). In detail RPNplus is based on an old console program (attached, written in C). Maybe this helps to answer your question. In principal it reads a character Quote:while((n=getchar())!=ESC) // quitand adds it to a string (including dealing with decimal point, prefix, exponent, etc.). Quote: if(strlen(s)<STRLEN) {strcat(s," "); s[strlen(s)-1]=n; If ENTER is pressed and (a valid string is existent) the stack is pushed and the string is written to register x (atof-function). If no valid string ist existent only the stack is pushed (x remains). Quote: {if(strlen(s)>0) {u=z; z=y; y=x; x=atof(s);} Due to a calculating operation (ie. +) the operation is executed and the stack is pulled. Quote: case '+': x=x+y; y=z; z=u; break; Regards deetee ################ Quote:/* |
|||
06-30-2016, 09:37 AM
Post: #9
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi parse!
As I have seen now - you asked this question on google-play too (but a little more exactly). The answer would be that the rotate-key (Rdown) doesn't write the input string to the register. That means that Quote:4 ENTER 3 ENTER 2 ENTER 1 Rdownrotates the stack only (but doesn't insert the string, which is lost). If you want to enter all 4 values and rotate you have to press Quote:4 ENTER 3 ENTER 2 ENTER 1 ENTER Rdown Regards deetee |
|||
06-30-2016, 05:23 PM
Post: #10
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi Deetee,
Thanks a lot. It is pretty clear, now, as is the app with large keys on a Samsung Note 4 for my old long-sighted / short-sighted eyes... ! Best regards |
|||
07-05-2016, 01:55 AM
Post: #11
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
(05-18-2016 06:22 AM)deetee Wrote: Hi all! This is a very nice app! I am love with the big keys and big display. |
|||
07-05-2016, 09:07 PM
Post: #12
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi detee,
I too like your calculator as a nice tool just for number crunching. There is however a minor annoyance. The app crashes when I try to set "MINoff". Galaxy S4, Android 5.01. That's not a big deal, I just want to let you know. Günter |
|||
07-12-2016, 12:59 PM
Post: #13
|
|||
|
|||
RE: RPNplus - Good RPN-calculator for Android
Hi Guenter!
It seems that my first answer disappeared for some reasons - why I try it again: MINoff needs (beside VIBRATEtime) access to Android and does it with: Quote:android.provider.Settings.System.putInt(getContentResolver(),Settings.System.SCREEN_OFF_TIMEOUT, offTime*60000); Therefore you have to push the value in minutes (1...10) to the X-Register and press "g MINoff". Unfortunately your S4 or Android refuses this action. A workaround could be to set the screen-off-time with the android settings directly. Sorry for this inconvenience. Regards deetee |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)