HP 49G: Challenge - Truncate a Long Real
|
07-06-2015, 07:49 PM
Post: #1
|
|||
|
|||
HP 49G: Challenge - Truncate a Long Real
Here is my attempt to truncate a long real imitating the real function TRNC.
For long real input %% 5.12345678901 %% 5 the programme returns %% 5.12345 & for input %% 5.12345678901 %% -5 returns %% 5.1234. I find it hard to believe this is the most economical way to do it. Can you suggest a less long-winded programme? Code:
|
|||
07-07-2015, 06:33 AM
Post: #2
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Hi Gerald,
you may use strings for truncating a long real, e.g: 5.12345678901 ENTER ->STR this converts your real into the string "5.12345678901" now enter: 1 ENTER 5 ENTER SUB ENTER this truncates your string after the 5th charachter: "5.123" The last step is to convert the string back to a real: STR-> ENTER This leaves 5.123 on Level 1 of the stack. The only problem is that you need to know the number of charachters to the left of the decimal point because the SUB command strictly counts from left to right. Hope this helps Best regards Karl |
|||
07-07-2015, 06:38 AM
Post: #3
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Thank you, Karl-Ludwig, for your suggestion.
However, for input %% 7.12345678901234 %% 13 your method fails. |
|||
07-07-2015, 12:25 PM
Post: #4
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Hi Gerald,
I just tried the example you mentioned. 13 decimal places from 7.12345678901234 should leave 7.1234567890123 but because the ->STR routine converts only 11 decimal places to string, the maximum is 11 decimal places. If you can avoid the ->STR routine by inputing the number as string, this limitation of the ->STR routine would not occur. Best regards Karl |
|||
07-07-2015, 12:35 PM
Post: #5
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
I'm not sure you know what a long real is.
Try this: Place 1.234 on the stack & apply the command ->S2 (that's right arrow S 2), you should see "% 1.234 @" This is how a real number decompiles. Now apply the command ASM to the last result & you have 1.234 again. If you change "% 1.234 @" to "%% 1.23456789012345 @" & apply ASM you will now see a long real on the stack, having 15 rather than 12 digits. |
|||
07-07-2015, 01:17 PM
Post: #6
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
(07-06-2015 07:49 PM)Gerald H Wrote: Here is my attempt to truncate a long real imitating the real function TRNC. How about using →H and H→ to convert to string? →H on 1.23456789012345 will give you: "55920000005432109876543210" The first 5 digits are the prolog, the next 5 are the exponent (0 in this case), and then you have your 15 digits, and the sign digit at the end. Truncating to a certain number of significant digits is easy, all you have to do is to replace the appropriate digits with zero and run H→. Truncating to a number of decimals after the dot can be tricky, you need to "read" the exponent to know where the dot would be, then replace the proper digits with zeros. |
|||
07-07-2015, 01:54 PM
Post: #7
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Interesting approach, Claudio.
How would you deal with %% 5.678E1234 to 3 decimal places? The mantissa & exponent are nicely separated in this representation, after ->H you have to work them out yourself. & remember the 3 could be negative, just as in the TRNC function for normal reals. Your suggestion may be a good approach....until you work out the details I think it will probably end up longer than my effort. I will be very happy to be proven wrong. |
|||
07-07-2015, 03:53 PM
Post: #8
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
(07-07-2015 01:54 PM)Gerald H Wrote: Interesting approach, Claudio. OK, challenge accepted. Here it is (in UserRPL). Looks a lot longer because of the comments: Code:
|
|||
07-07-2015, 04:48 PM
(This post was last modified: 07-07-2015 05:54 PM by Gerald H.)
Post: #9
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Bravo, Claudio!
Your programme works! I include a code box for your programme to display it more clearly. I haven't fully tested the programme yet, however for input 1.41421356237309E-12345 5. it returns 0E-12345 Correct, but I prefer 0E0 Your programme is 435.5 Bytes while my latest version is 110 Bytes. Code:
|
|||
07-07-2015, 05:48 PM
Post: #10
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
(07-07-2015 04:48 PM)Gerald H Wrote: Bravo, Claudio! Yes, one consequence of direct manipulation of digits is that zero becomes denormalized. It shouldn't cause any problems when operating on it, and can easily be solved by adding %% 0. to the final result (but you can't do that in userRPL, you'd have to port the code to sysRPL). It should be easy to port to sysRPL to save a few more bytes (or at least eliminate the local variables), but where the idea will shine is in Saturn ASM, as the manipulation of digits can be done directly in a register instead of a string, which would make it extremely small and fast. also reading the exponent is trivial in ASM, but requires quite some work in userRPL. |
|||
07-17-2015, 07:58 AM
Post: #11
|
|||
|
|||
RE: HP 49G: Challenge - Truncate a Long Real
Here my improved version of the truncation programme for long reals, replicating the built in TRNC function for reals.
So the winner of the challenge is me, unless someone publishes a better programme, an extremely unlikely eventuality. Code:
|
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)